git使用技巧

1、
问题:git仓库太大,每次使用小乌龟检出都到40%左右的时候就中断了,重来又重新开始。
解决:通过如下命令
步骤一、
git fetch https://repo.or.cz/tomato.git
如果中途掉线,继续重复执行上面命令

步骤二、
git checkout FETCH_HEAD
git fetch git://repo.or.cz/tomato.git HEAD

你可能感兴趣的:(git使用技巧)