Add information on caching credentials in memory

This commit is contained in:
James Skemp 2023-09-10 16:17:01 -05:00
parent 2b64448c5a
commit 40380f6ac6
1 changed files with 3 additions and 0 deletions

View File

@ -10,4 +10,7 @@ git config --global user.name "Your Name"
# Update individual repository user name / email.
git config user.name "Your Name"
git config user.email "your_email@example.com"
# Store credentials in cache/memory (default 900 seconds/15 minutes).
git config credential.helper cache
```