I have a git
project hosted on a TFS server (ruling out ssh
protocols). After setting git config --global sslVerify false
I was able to git pull
and git clone
, but over a VPN , I was unable to git push
.
To be more explicit, git clone https://tfs.example.com/project.git
clones the repository without problem, but ping tfs.example.com
times out with no response.
I have used the answer to this question to make git aware of my proxy settings, but even with this set, git push
still terminates with
fatal: unable to access 'https://tfs.example.com/project': Could not resolve host: tfs.example.com
Other perhaps relevant information: git --version 1.9.1, Ubuntu 14.04, running through an Oracle VMWare virtual box, hosted on Windows 7.
Any suggestions? In any case, I'd be happy just to figure out why there is an asymmetry between git push
and git pull
.