diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-26 13:37:20 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-26 13:37:20 -0800 |
commit | 2a24444aaeaabd8559751b02015c025157604f38 (patch) | |
tree | 0e4cc474c6a8af43a2b30d42f502d80232b7e7ef /Documentation | |
parent | 225caa73f25f8577a710f406b2670c3bcf0aef34 (diff) | |
parent | 6e6144905188a76ef75c5418bd48c333adeebdcd (diff) | |
download | git-2a24444aaeaabd8559751b02015c025157604f38.tar.gz |
Merge branch 'jg/credential-cache-chdir-to-sockdir'
The "credential-cache" daemon process used to run in whatever
directory it happened to start in, but this made umount(2)ing the
filesystem that houses the repository harder; now the process
chdir()s to the directory that house its own socket on startup.
* jg/credential-cache-chdir-to-sockdir:
credential-cache--daemon: change to the socket dir on startup
credential-cache--daemon: disallow relative socket path
credential-cache--daemon: refactor check_socket_directory
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-credential-cache.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-credential-cache.txt b/Documentation/git-credential-cache.txt index 89b730632d..96208f822e 100644 --- a/Documentation/git-credential-cache.txt +++ b/Documentation/git-credential-cache.txt @@ -36,7 +36,7 @@ OPTIONS cache daemon if one is not started). Defaults to `~/.git-credential-cache/socket`. If your home directory is on a network-mounted filesystem, you may need to change this to a - local filesystem. + local filesystem. You must specify an absolute path. CONTROLLING THE DAEMON ---------------------- |