美文网首页
Git 仓库代码太大clone不下来

Git 仓库代码太大clone不下来

作者: Mirsiter_魏 | 来源:发表于2022-03-30 16:05 被阅读0次

当 Git clone 代码到最后出现 fetch-pack: unexpected disconnect while reading sideband 

packet fatal: early 时,大多是因为仓库代码太大,无法一次clone下来,这时需要如下操作:

第一步:

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

--depth 用来指定克隆的深度,1表示克隆最近的一次commit。

第二步:

git fetch --unshallow

拉取完整当前分支,但是这里有个问题,不会把远程的所有分支拉取下来,那拉取所有分支怎么做呢?请看第三步

第三步:

git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"

修改.git文件夹内config文件的[remote "origin"]节的内容

第四步:

git fetch -pv

这时就能拉取所有的分支了

第五步:

git fetch --all

相关文章

  • Git 仓库代码太大clone不下来

    当 Git clone 代码到最后出现 fetch-pack: unexpected disconnect whi...

  • git

    仓库 当前目录新建一个代码库 git init检出仓库 git clone检出标签处的仓库 git clone -...

  • git 常用命令

    克隆:git clone 代码仓库地址例如: git clone http://192.168.22.62:84/...

  • 小记:git拉取大项目

    因为项目太大,然后直接git clone拉不下来代码会报error: RPC failed; HTTP 504 c...

  • git 分支切换合并

    1、git clone 当我们想要从远程git 仓库中拉取一份全代码, 我们会使用git clone git_仓库...

  • git常用指令

    下载远程仓库代码 git clone 代码仓库地址 从远程仓库拉取代码 git pull 提交代码到本地分支,并推...

  • Git的操作流程

    Git的基本操作: 只要操作git 最前⾯面 都需要写git 克隆隆远程代码仓库:git clone+远程代码仓库...

  • 【Git学习笔记1】从 git clone 和 git stat

    git clone 和 git status git clone 获取远程仓库,将远端的代码以及相关分支信息cl...

  • Gite Bash 用法2018-07-16

    Git的基本操作: 只要操作git 最前面 都需要写git 克隆隆远程代码仓库:git clone 远程代码仓库的...

  • Git 19连接远程仓库

    连接远程仓库 Gitee ========= 命令 git clone url 克隆代码 git remote -...

网友评论

      本文标题:Git 仓库代码太大clone不下来

      本文链接:https://www.haomeiwen.com/subject/abqwjrtx.html