summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-09-26 21:39:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-09-26 21:39:45 (GMT)
commitb33000878a88b52816b97aeb88ba3677902ad277 (patch)
tree9bf6aff03d6ad42eefbb8e1708c1eabac46aa327 /Documentation
parentbdab1bca53b71fd6bd2420d1e007eb2ef7b8abc3 (diff)
parentf5e3c0b9d050ebdaf96d3910b01b01695e3ea1a2 (diff)
downloadgit-b33000878a88b52816b97aeb88ba3677902ad277.zip
git-b33000878a88b52816b97aeb88ba3677902ad277.tar.gz
git-b33000878a88b52816b97aeb88ba3677902ad277.tar.bz2
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')
-rw-r--r--Documentation/git-credential-cache--daemon.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-credential-cache--daemon.txt b/Documentation/git-credential-cache--daemon.txt
index d15db42..7051c6b 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