Git push requires username and password

TooCooL picture TooCooL · Jul 3, 2011 · Viewed 1.3M times · Source

I cloned a Git repository from my GitHub account to my PC.

I want to work with both my PC and laptop, but with one GitHub account.

When I try to push to or pull from GitHub using my PC, it requires a username and password, but not when I'm using the laptop!

I don't want to type my username and password every time I interact with origin. What am I missing here?

Answer

Tekkub picture Tekkub · Jul 3, 2011

A common cause is cloning using the default (HTTPS) instead of SSH. You can correct this by going to your repository, clicking "Clone or download", then clicking the "Use SSH" button above the URL field and updating the URL of your origin remote like this:

git remote set-url origin [email protected]:username/repo.git

This is documented at GitHub: Switching remote URLs from HTTPS to SSH.