当项目过大时,git clone时会出现error: RPC failed; HTTP 504 curl 22 The requested URL returned error: 504 Gateway Time-out的问题,此时我们可以只下载远程仓库中的最新的一个版本,而不下载其他老版本的内容,这样会大大减小存储与传输压力。

我们可以在克隆时指定--depth 1--depth后面的阿拉伯数字代表克隆仓库的最新几个版本,为1代表只克隆远程仓库的最新的一个版本。
示例:

git clone --depth 1 https://github.com/dogescript/xxxxxxx.git

注意:这样只会把默认分支clone下来,其他远程分支并不在本地,所以这种情况下,需要用如下方法拉取其他分支:

git remote set-branches origin 'remote_branch_name'
git fetch --depth 1 origin remote_branch_name
git checkout remote_branch_name
Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐