Junio C Hamano | 792b609 | 2019-05-13 16:03:59 | [diff] [blame] | 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. |
Junio C Hamano | fa2a48b | 2019-10-15 05:24:40 | [diff] [blame] | 5 | * `<absolute-pathname>` - Writes to the file in append mode. If the target |
| 6 | already exists and is a directory, the traces will be written to files (one |
| 7 | per process) underneath the given directory. |
Junio C Hamano | 6546a50 | 2024-02-08 23:48:36 | [diff] [blame] | 8 | * `af_unix:[<socket-type>:]<absolute-pathname>` - Write to a |
Junio C Hamano | 792b609 | 2019-05-13 16:03:59 | [diff] [blame] | 9 | Unix DomainSocket (on platforms that support them). Socket |
| 10 | type can be either `stream` or `dgram`; if omitted Git will |
| 11 | try both. |
| 12 | -- |