Last active
December 15, 2015 01:19
-
-
Save zrod/5179341 to your computer and use it in GitHub Desktop.
Git credentials
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(1.7.9+) | |
Stores password in cache for 15 minutes (default): | |
git config --global credential.helper cache | |
Define custom timeout: | |
git config credential.helper 'cache --timeout=3600' | |
OS Keystore: | |
git config --global credential.helper osxkeychain | |
Windows: | |
https://help.github.com/articles/set-up-git#password-caching | |
More @ https://www.kernel.org/pub/software/scm/git/docs/git-credential-store.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment