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 p
Here's another option:
Instead of writing
git push origin HEAD
You could write:
git push https://user:pass@yourrepo.com/path HEAD
Obviously, with most shells this will result in the password getting cached in history, so keep that in mind.