I saw here many questions covering git and proxy topics but none of them solves my problem. I am cloning a git repository from Bitbucket. Everything works fine from my home network but hangs at work where we are using proxy with NTLM authentication. See the output of git clone command:
$ git clone https://my_user@bitbucket.org/my_user/my_project.git --verbose
Cloning into 'my_project'...
Password for 'https://my_user@bitbucket.org':
POST git-upload-pack (174 bytes)
remote: Counting objects: 548, done.
remote: Compressing objects: 100% (367/367), done.
remote: Total 548 (delta 216), reused 0 (delta 0)
Receiving objects: 100% (548/548), 5.28 MiB | 533 KiB/s, done.
Resolving deltas: 100% (216/216), done.
git clone command always hangs on "Resolving deltas".
My setup:
- Windows 7 64-bit with msysgit 1.8.0
proxy configured:
$git config --global http.proxy http://MY_DOMAIN\\\my_user:my_password@http-proxy:8080
It seems that the problem is somehow related to git object size because git clone used to work at the very beginning when I had few files only in my repository.