1
0
mirror of synced 2025-12-21 02:46:50 -05:00

Add link to more info on storing git credentials

Added a link from the Linux section to Git Pro's instructions on storing git credentials with git. This provides some important elaboration on and alternatives to the instructions provided in the existing GitHub article.
This commit is contained in:
Gary Munnelly
2021-05-25 21:06:43 +01:00
committed by GitHub
parent 2fe845ef41
commit b901801e35

View File

@@ -94,6 +94,7 @@ Turn on the credential helper so that Git will save your password in memory for
$ git config --global credential.helper 'cache --timeout=3600'
# Set the cache to timeout after 1 hour (setting is in seconds)
```
For more options for storing your credentials on Linux, see [Section 7.14 Git Tools - Credential Storage](https://git-scm.com/book/en/v2/Git-Tools-Credential-Storage) in Git Pro by Scott Chacon and Ben Straub.
{% endlinux %}