Reputation: 41
When I run the command git clone -v [repo]
it gets to
Receiving objects: 24%
and just hangs forever. I have canceled and re-tried about 1/2 dozen times and every time it gets to a different percentage and hangs. I have disabled my AVG firewall to no avail. Using Windows Server 2012 Git bash version 1.9.4
Upvotes: 2
Views: 6963
Reputation: 10305
Try these option for more debugging ...
GIT_TRACE=1; GIT_CURL_VERBOSE=1 git clone --verbose http://github.com/rajasimon/yourproject.git
Upvotes: 7