I\'m using Visual Studio, and the GitHub Extension. I am able to sign in, then clone my team\'s repository, and then pull changes successfully.
When it comes time to
In my case the same issue coming on below scenario:
We are under corporate network. So we have our own proxy. When we try cloning we cant able to download due to same error.
I added proxy url in our git config.
[http]
proxy=http://YourNameHere:YourPasswordHere@proxy.aaa.com:6050/
sslVerify = false
[https]
proxy=http://YourNameHere:YourPasswordHere@proxy.aaa.com:6050/
sslVerify = false
Issue disappears and i can do all git operations.