When I push a media file (swf or png) to TFS, the process hangs at 100%, regardless of the file size:
git.exe push --progress "origin" develop:develop
Counting objects: 82, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (23/23), done.
Writing objects: 100% (23/23), 335.75 KiB | 0 bytes/s, done.
Total 23 (delta 16), reused 0 (delta 0)
I just stumbled across this one. It seems that the push hangs if the commit contains a PNG file (as it was in my case). The response I got when sniffing the network was:
which is really beside the point; I can authenticate, clone and pull just fine.
Try this, it worked for me:
git reset HEAD~1
if it's the last commit). This is fine as long as you haven't pushed.The problem is in TFS and you need to involve its administrator.