-1
How to make git memorize user and password, so you don’t have to type every time you upgrade to a project?
-1
How to make git memorize user and password, so you don’t have to type every time you upgrade to a project?
0
What you need to understand is that there are two ways to use git, no matter where the repository is, which are: via https
and ssh
, if you use https
, will need to put the password every time you use it. Use with ssh
no need to enter password.
Generating the public key Generate ssh key in git
And if you use github as a code aggregator then look at this article. https://help.github.com/articles/connecting-to-github-with-ssh/
Browser other questions tagged github
You are not signed in. Login or sign up in order to post.
Is your email configured? example git config --global user.email "[email protected]" ?
– Sveen
Yes, and still ask for email and password
– Miguel Silva
This probably resolves https://git-scm.com/docs/git-credential-store
– Guilherme Nascimento
Only use SSH instead of HTTPS you will not need to enter password.
– David Costa
@Guillhermenascimento resolved
– Miguel Silva