2

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

Opal
  • 81,889
  • 28
  • 189
  • 210
Steve Kohanek
  • 41
  • 2
  • 3
  • 1
    Can you attempt an `init`, `remote add`, and then a `fetch` to see if the fetch is the issue? Also, see: http://stackoverflow.com/questions/11941175/git-fetch-pull-clone-hangs-on-receiving-objects – Jeremy Fortune Jun 18 '15 at 12:57
  • Are you sure it isn't just taking a while because there is a really large blob in the history somewhere? git only updates the percentage once it completes a whole file. – o11c Jun 21 '15 at 06:58

1 Answers1

7

Try these option for more debugging ...

GIT_TRACE=1; GIT_CURL_VERBOSE=1 git clone --verbose http://github.com/rajasimon/yourproject.git
Raja Simon
  • 10,126
  • 5
  • 43
  • 74