New to Git.
Followed all the directions from github help pages but simple commands like git pull and git push continues to prompt my password on each invocation. Specifically, I set the following:
- git config –global user.name “Your name”
- git config –global user.email you@yourdomain.com
- git config –global github.token 123321321sdssddaqqwq
I also setup ssh keys elaborately as per the steps mentioned in the help but password prompts don’t go away.
Suggestions?
From your comment saying that the password that works at this prompt is your GitHub password, I strongly suspect that you’ve cloned your repository using the
httpsURL rather than the SSH URL. You can change that with:… where you should replace the last parameter with whatever’s shown when you click the “SSH” button on your repository’s page.
(You can check what URL
origincurrently refers to withgit remote -v.)