Junio C Hamano | 0df9271 | 2011-12-21 22:30:44 | [diff] [blame] | 1 | git-credential-cache--daemon(1) |
| 2 | =============================== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | d031611 | 2012-08-22 19:55:29 | [diff] [blame] | 6 | git-credential-cache--daemon - Temporarily store user credentials in memory |
Junio C Hamano | 0df9271 | 2011-12-21 22:30:44 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | [verse] |
Junio C Hamano | b6a6d92 | 2014-09-26 22:37:24 | [diff] [blame] | 11 | git credential-cache--daemon [--debug] <socket> |
Junio C Hamano | 0df9271 | 2011-12-21 22:30:44 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
| 15 | |
| 16 | NOTE: You probably don't want to invoke this command yourself; it is |
| 17 | started automatically when you use linkgit:git-credential-cache[1]. |
| 18 | |
| 19 | This command listens on the Unix domain socket specified by `<socket>` |
| 20 | for `git-credential-cache` clients. Clients may store and retrieve |
| 21 | credentials. Each credential is held for a timeout specified by the |
| 22 | client; once no credentials are held, the daemon exits. |
| 23 | |
Junio C Hamano | b6a6d92 | 2014-09-26 22:37:24 | [diff] [blame] | 24 | If the `--debug` option is specified, the daemon does not close its |
| 25 | stderr stream, and may output extra diagnostics to it even after it has |
| 26 | begun listening for clients. |
| 27 | |
Junio C Hamano | 0df9271 | 2011-12-21 22:30:44 | [diff] [blame] | 28 | GIT |
| 29 | --- |
| 30 | Part of the linkgit:git[1] suite |