git 仓库过大时
2020-04-08 本文已影响0人
南蓝NL
git clone --depth 1
拉取最近的一次commit,只会拉取默认的分支,但是其他的分支可能拉不下来,所以要采用以下的方法拉取
git clone --depth 1 https://github.com/dogescript/xxxxxxx.git
git remote set-branches origin 'remote_branch_name'
git fetch --depth 1 origin remote_branch_name
git checkout remote_branch_name
git clone -b ${branch} --depth=1