Skip to main content

Git: How can I perform a `git pull` without re-entering my SSH password?

To cache the password for a month:

git config --global credential.helper 'cache --timeout=2628000'
best practices