Memorizzare la password per l'accesso ad un repository Git

From RVM Wiki
Revision as of 13:25, 30 September 2015 by Gabriele.vivinetto (talk | contribs) (Created page with "You need Git 1.7.10 or newer to use the credential helper. * Set git to use the credential memory cache git config --global credential.helper cache * Set the cache to timeo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

You need Git 1.7.10 or newer to use the credential helper.

  • Set git to use the credential memory cache
git config --global credential.helper cache
  • Set the cache to timeout after 1 hour (setting is in seconds)
git config --global credential.helper 'cache --timeout=3600'

Riferimenti