I was able to get git 1.7.1 to work after a while.
Firstly, I had to disable SSL so that I could pull:
git config --global http.sslverify false
Then I could clone
git clone https:
Then after adding and committing, I was UNABLE to return. So what i did
git remote -v origin https://github.com/USERNAME/PROJECTNAME.git (fetch) origin https://github.com/USERNAME/PROJECTNAME.git (push)
to see push and push addresses:
They must be modified using USERNAME @
git remote set-url origin https:
It will still ask for a password, which you can add with
USERNAME:PASSWORD@github.....
But do not do this, as you keep your password clear for easy theft.
I had to make this combination because I could not get SSH to work due to firewall restrictions.
Heine Nรธrby Sep 22 '14 at 12:29 2014-09-22 12:29
source share