]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/trace2-target-values.txt
Merge branch 'js/update-index-ignore-removal-for-skip-worktree'
[thirdparty/git.git] / Documentation / trace2-target-values.txt
CommitLineData
81567caf
JH
1--
2* `0` or `false` - Disables the target.
3* `1` or `true` - Writes to `STDERR`.
4* `[2-9]` - Writes to the already opened file descriptor.
3d4548e7
JS
5* `<absolute-pathname>` - Writes to the file in append mode. If the target
6already exists and is a directory, the traces will be written to files (one
7per process) underneath the given directory.
81567caf
JH
8* `af_unix:[<socket_type>:]<absolute-pathname>` - Write to a
9Unix DomainSocket (on platforms that support them). Socket
10type can be either `stream` or `dgram`; if omitted Git will
11try both.
12--