Quantcast
Channel: Uly.me
Viewing all articles
Browse latest Browse all 12

Storing Git Credentials

$
0
0

There are two ways to store git credentials. One is temporary and the other permanent. You can store your git credentials unencrypted on disk forever or in cache memory temporarily.

Temporary. Store for 15 minutes.

git config credential.helper 'cache --timeout=900'

Permanent.

git config credential.helper store
git push http://example.com/repo.git
Username: 
Password: 

Next time you use git, you will not be prompted for a password.


Viewing all articles
Browse latest Browse all 12

Trending Articles