diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-06 13:38:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-06 13:38:06 -0700 |
commit | 2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9 (patch) | |
tree | 18fef611dc2a9c8f4113235af95da79c76cbd3cb /Documentation/git.txt | |
parent | Second batch of topics for 2.10 (diff) | |
parent | imap-send.c: introduce the GIT_TRACE_CURL enviroment variable (diff) | |
download | tgif-2f84df2ca0f7a5174d2eb5f4ee52324ce8f807b9.tar.xz |
Merge branch 'ep/http-curl-trace'
HTTP transport gained an option to produce more detailed debugging
trace.
* ep/http-curl-trace:
imap-send.c: introduce the GIT_TRACE_CURL enviroment variable
http.c: implement the GIT_TRACE_CURL environment variable
Diffstat (limited to 'Documentation/git.txt')
-rw-r--r-- | Documentation/git.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/git.txt b/Documentation/git.txt index b0611eaab4..ca611c9f86 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -1083,6 +1083,14 @@ of clones and fetches. cloning of shallow repositories. See `GIT_TRACE` for available trace output options. +`GIT_TRACE_CURL`:: + Enables a curl full trace dump of all incoming and outgoing data, + including descriptive information, of the git transport protocol. + This is similar to doing curl `--trace-ascii` on the command line. + This option overrides setting the `GIT_CURL_VERBOSE` environment + variable. + See `GIT_TRACE` for available trace output options. + `GIT_LITERAL_PATHSPECS`:: Setting this variable to `1` will cause Git to treat all pathspecs literally, rather than as glob patterns. For example, |