I was originally on my master branch.
Then, I created a new branch:
git branch my-other-branch Then, after I made some changes on my project, I pushed this branch to origin to make it a remote branch:
git push origin my-other-branch I guess now the my-other-branch is available to other team members to use.
After a while, I made some more changes, added and committed them, then I tried to pull from the remote branch:
git pull origin my-other-branch I got the error :
error: Failed connect to SERVER_NAME:443; Operation now in progress while accessing https://SERVER_NAME/projects/bank_project/repositories/git/bank/info/refs
fatal: HTTP request failed
Why do I get that error, where am I wrong?
(My Git version is 1.7.2.3, my OS is Linux/Ubuntu)
env-updatecould fix?