Steve Kohanek
Steve Kohanek

Reputation: 41

Git clone hangs in Windows bash

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

Answers (1)

Raja Simon
Raja Simon

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

Related Questions