diff options
author | Taylor Blau <me@ttaylorr.com> | 2022-11-18 18:43:55 -0500 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-11-18 18:43:55 -0500 |
commit | 3f98d7ab1b816f403fc12c7a7e056ceba230bab9 (patch) | |
tree | c00d9b3c30fad130d02df09432c9bb645fc5bc80 /Documentation | |
parent | 35dc2cf03fdb5de830f2194d86b0eea8367ed1e4 (diff) | |
parent | f13c3f28e7e8959fa23958323458b7e4437f2dda (diff) | |
download | git-3f98d7ab1b816f403fc12c7a7e056ceba230bab9.tar.gz |
Merge branch 'mh/increase-credential-cache-timeout'
Update the credential-cache documentation to provide a more realistic
example.
* mh/increase-credential-cache-timeout:
Documentation: increase example cache timeout to 1 hour
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-credential-cache.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-credential-cache.txt b/Documentation/git-credential-cache.txt index 0216c18ef8..432e159d95 100644 --- a/Documentation/git-credential-cache.txt +++ b/Documentation/git-credential-cache.txt @@ -69,10 +69,10 @@ $ git push http://example.com/repo.git ------------------------------------ You can provide options via the credential.helper configuration -variable (this example drops the cache time to 5 minutes): +variable (this example increases the cache time to 1 hour): ------------------------------------------------------- -$ git config credential.helper 'cache --timeout=300' +$ git config credential.helper 'cache --timeout=3600' ------------------------------------------------------- GIT |