如何将 Gitshallow clone to a full clone
以下命令(git 版本 1.8.3)会将shallow clone转换为常规克隆
git fetch --unshallow
然后,访问原点的所有分支
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" git fetch origin