diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-09-26 14:39:45 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-09-26 14:39:45 -0700 |
commit | b33000878a88b52816b97aeb88ba3677902ad277 (patch) | |
tree | 9bf6aff03d6ad42eefbb8e1708c1eabac46aa327 /Documentation/git-credential-cache--daemon.txt | |
parent | bdab1bca53b71fd6bd2420d1e007eb2ef7b8abc3 (diff) | |
parent | f5e3c0b9d050ebdaf96d3910b01b01695e3ea1a2 (diff) | |
download | git-b33000878a88b52816b97aeb88ba3677902ad277.tar.gz git-b33000878a88b52816b97aeb88ba3677902ad277.tar.xz |
Merge branch 'jk/close-stderr-of-credential-cache-deamon'
Plug fd leaks.
* jk/close-stderr-of-credential-cache-deamon:
credential-cache: close stderr in daemon process
Diffstat (limited to 'Documentation/git-credential-cache--daemon.txt')
-rw-r--r-- | Documentation/git-credential-cache--daemon.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-credential-cache--daemon.txt b/Documentation/git-credential-cache--daemon.txt index d15db42d4..7051c6bdf 100644 --- a/Documentation/git-credential-cache--daemon.txt +++ b/Documentation/git-credential-cache--daemon.txt @@ -8,7 +8,7 @@ git-credential-cache--daemon - Temporarily store user credentials in memory SYNOPSIS -------- [verse] -git credential-cache--daemon <socket> +git credential-cache--daemon [--debug] <socket> DESCRIPTION ----------- @@ -21,6 +21,10 @@ for `git-credential-cache` clients. Clients may store and retrieve credentials. Each credential is held for a timeout specified by the client; once no credentials are held, the daemon exits. +If the `--debug` option is specified, the daemon does not close its +stderr stream, and may output extra diagnostics to it even after it has +begun listening for clients. + GIT --- Part of the linkgit:git[1] suite |