美文网首页Git
git 仓库过大时

git 仓库过大时

作者: 南蓝NL | 来源:发表于2020-04-08 10:54 被阅读0次

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 

相关文章

  • git 仓库过大时

    git clone --depth 1拉取最近的一次commit,只会拉取默认的分支,但是其他的分支可能拉不下来,...

  • git本地仓库的理解

    git本地仓库的理解 学习Git时总听人说git分为本地仓库和远程仓库,但是远程仓库还好理解,本地仓库在哪呢,根本...

  • git 仓库体积过大,如何减小?

    使用git filter-branch 彻底删除git中的文件(包括历史提交记录)[https://www.cnb...

  • git 命令指南

    整理一下 git 命令,用时总会忘记。 Git常用命令 git 克隆远程分支仓库git 克隆远程仓库项目时如果不指...

  • Git的基本命令(init, add, commit)

    git init 创建新仓库时使用,具体用法为创建新目录,进入目录,执行 git init 初始化新仓库 git ...

  • Git & Github 使用入门

    创建git仓库 1、本地新建 2、远程克隆 常用命令 自定义git git仓库中有某些文件不能提交时,可以建 ....

  • git迁移

    git clone --bare 原库/仓库.gitcd /仓库git push --mirror 新库/仓库.git

  • git学习记录

    git init创建git仓库 git add添加文件到仓库 git commit -m "xxx"提交文件到仓库...

  • 从远程分支拉取代码

    git init 初始化git仓库 git remote add origin 仓库地址 链接远程仓库 git f...

  • git 仓库

    git 初始化 初始化git init git 新建 git 仓库,关联远程仓库 关联远程仓库git remote...

网友评论

    本文标题:git 仓库过大时

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