summaryrefslogtreecommitdiff
path: root/Documentation/trace2-target-values.txt
diff options
context:
space:
mode:
authorJeff Hostetler <jeffhost@microsoft.com>2019-04-15 20:39:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-04-16 04:37:07 (GMT)
commit81567caf87c655ba13260bd66d8ec67b8d6e492b (patch)
tree21c0e6925baaf779ba88e6e55330e399ae15cb11 /Documentation/trace2-target-values.txt
parent08881b9a4c841b77bc2a4a17510ee33b98070b9e (diff)
downloadgit-81567caf87c655ba13260bd66d8ec67b8d6e492b.zip
git-81567caf87c655ba13260bd66d8ec67b8d6e492b.tar.gz
git-81567caf87c655ba13260bd66d8ec67b8d6e492b.tar.bz2
trace2: update docs to describe system/global config settings
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/trace2-target-values.txt')
-rw-r--r--Documentation/trace2-target-values.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/trace2-target-values.txt b/Documentation/trace2-target-values.txt
new file mode 100644
index 0000000..27d3c64
--- /dev/null
+++ b/Documentation/trace2-target-values.txt
@@ -0,0 +1,10 @@
+--
+* `0` or `false` - Disables the target.
+* `1` or `true` - Writes to `STDERR`.
+* `[2-9]` - Writes to the already opened file descriptor.
+* `<absolute-pathname>` - Writes to the file in append mode.
+* `af_unix:[<socket_type>:]<absolute-pathname>` - Write to a
+Unix DomainSocket (on platforms that support them). Socket
+type can be either `stream` or `dgram`; if omitted Git will
+try both.
+--