Why "git clone" stops after unpacking the object: 100%, done

$ git fetch pb remote: Counting objects: 9, done. remote: Compressing objects: 100% (7/7), done. remote: Total 9 (delta 0), reused 3 (delta 0) Unpacking objects: 100% (9/9), done. 

Therefore, I cannot clone the code from the server. Can anyone help me?

+6
source share
2 answers

On an empty repo, the choice will do nothing (as indicated in What the output from git really means? ").
It will update FETCH_HEAD .

Only git pull will update the local branch and working tree.

But if after that the team freezes, as illustrated by this tweet , it could be a GitHub status issue .

 October 15, 2012 04:04 pm PST GitHub Pages was down from 3:50-3:59 pm. We're investigating the cause. October 14, 2012 – minor interruption occurred 02:55 am PST All connectivity issues have been resolved. 02:47 am PST We are investigating errors with GitHub.com and API 
+1
source

I had the same problem. Found the answer here . Two options, one is ugly, and includes Ctrl-c'ing when your hovering drags on, and then git fsck and git merge on a dangling commit. But there is a better way, if it works, using the method of this blog , which describes how to use CNTLM.

Git does not work with NTLM proxies, which will be the case in most enterprise environments. The solution is to configure a local proxy server that redirects traffic, which is what CNTLM does.

Install CNTLM , modify the .ini file to insert your user, domain, password and proxy identifiers. Launch the proxy, then run it in git Bash: git config --global http.proxy localhost: 3128

Now work!

+1
source

Source: https://habr.com/ru/post/927811/


All Articles