Skip to content

Using Git

Thomas J. Brailey edited this page May 29, 2020 · 2 revisions

Avoid entering password for every push

  • 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'

Further reading

  • See this for a comprehensive guide to using Git with R.

Clone this wiki locally