I have just created a small corporate repository on Azure ( 1 commit per each of 2 branches, totall about 200mb of repo), then I deleted local repository. When I try to clone it to my local machine back( I assume proxy might be an issue here ) I get:
RPC failed: curl 56 failure when receiving data from the peer.
(However, if that is important, I also see that 100% objects received, 100% deltas resolved.) I am a very distant GIT user, but I have found a way to do the so called shallow clone of repo.
Question is: did I clone the repo with correctly? (it seems yes so far, but do the commands bellow look valid theoretically?):
git clone URL --depth=1
git remote set-branches origin '*'
git fetch -v --depth=1
Question 2. I still do not understand what was the issue with the error curl56.. Any ideas? P.S. Isn't it possible to download zipped repo from remote to local machine and then somehow link the unzipped directory to the remote(upstream)?