-
Notifications
You must be signed in to change notification settings - Fork 0
Using Git
Thomas J. Brailey edited this page May 29, 2020
·
2 revisions
- Information comes from this article.
Turn on the credential helper so that Git will save your password in memory for some time. By default, Git will cache your password for 15 minutes. In Terminal, enter the following:
git config --global credential.helper cache
To change the default password cache timeout, enter the following:
git config --global credential.helper 'cache --timeout=3600'
- See this for a comprehensive guide to using Git with R.