blob: 3985b6d3c2956f7d0b2c5d16d262a5203afe680e [file] [log] [blame]
Jeff Hostetler81567ca2019-04-15 13:39:50 -07001--
2* `0` or `false` - Disables the target.
3* `1` or `true` - Writes to `STDERR`.
4* `[2-9]` - Writes to the already opened file descriptor.
Josh Steadmon3d4548e2019-10-03 16:32:56 -07005* `<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.
Jeff Hostetler81567ca2019-04-15 13:39:50 -07008* `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--