git|git 仓库过大时

【git|git 仓库过大时】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

    推荐阅读