Reputation: 1515
everytime i try to push , its telling me that i cant push to git://github.com/somegitrepo.git
it tells me to use https://github.com/somegitrepo.git , and it will work only if i type git push https://github.com/somegitrepo.git everytime i push
my remote -v shows my origins for push and fetch as
git://github.com/somegitrepo.git
How do i go about fixing this?
Thanks
Upvotes: 1
Views: 5943
Reputation: 11
Now pushing git
If still not working---- go to credential manager then windows credential and delete personel access token of github.
Upvotes: 1
Reputation: 5930
git remote set-url origin "https://github.com/somegitrepo.git"
will change address of origin.
Problem with using git://
version may be caused by badly configured (or just lacking) SSH keys.
Upvotes: 3