Documentation/git.txt: clarify that GIT_TRACE=/path appends

The current wording of the description of GIT_TRACE=/path/to/file ("... will try to write the trace messages into it") might be misunderstood as "overwriting"; at least I interpreted it that way on a cursory first read. State it more explicitly that the trace messages are appended. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

SZEDER Gábor committed Sep 4, 2018 at 02:05 UTC fa0aeea770666e5104cfa4decb6a480e59868165
1 file changed +2 -2
Documentation/git.txt
+2 -2
@@ -599,8 +599,8 @@ trace messages into this file descriptor.
599 +
600 Alternatively, if the variable is set to an absolute path
601 (starting with a '/' character), Git will interpret this
602 -as a file path and will try to write the trace messages
603 -into it.
602 +as a file path and will try to append the trace messages
603 +to it.
604 +
605 Unsetting the variable, or setting it to empty, "0" or
606 "false" (case insensitive) disables trace messages.