A friend and myself are sharing my computer. I\'ve made pushes to GitHub using the git bash shell on Windows 7. Now we\'re in a different project on that computer and I need
You can add a new remote URL for the other username using git remote add origin-username https://username@github.expedia.biz/repository_name.git
git remote add origin-username https://username@github.expedia.biz/repository_name.git
After this, if you'll push using git push -u origin-username master , this will prompt you for the password.
git push -u origin-username master