blob: 06f19533134f9d8018b1b1ae924370660ec36d73 [file] [log] [blame]
Junio C Hamano792b6092019-05-13 16:03:591--
2* `0` or `false` - Disables the target.
3* `1` or `true` - Writes to `STDERR`.
4* `[2-9]` - Writes to the already opened file descriptor.
Junio C Hamanofa2a48b2019-10-15 05:24:405* `<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.
Junio C Hamano6546a502024-02-08 23:48:368* `af_unix:[<socket-type>:]<absolute-pathname>` - Write to a
Junio C Hamano792b6092019-05-13 16:03:599Unix DomainSocket (on platforms that support them). Socket
10type can be either `stream` or `dgram`; if omitted Git will
11try both.
12--