git 浅克隆后拉去其他分支

$ git clone <git-repo-url> --depth=1 repo
$ cd repo

现在浅克隆了一个git仓库repo。但仓库里查询远程分支只有一个认分支(这里是 master ),没有其他分支(如 weekly ):

$ git branch -r
  origin/HEAD -> origin/master
  origin/master

查看git config

$ git config --get remote.origin.fetch
+refs/heads/master:refs/remotes/origin/master

此时是无法拉取其他分支的。解决步骤如下:

$ git remote set-branches origin *

$ git config --get remote.origin.fetch
+refs/heads/*:refs/remotes/origin/*

$ git fetch --depth=1 origin weekly
remote: Enumerating objects: 31, done.
...
 * branch            weekly     -> FETCH_HEAD
 * [new branch]      weekly     -> origin/weekly

$ git branch -r
  origin/HEAD -> origin/master
  origin/master
  origin/weekly

$ git checkout -b weekly origin/weekly
Switched to a new branch 'weekly'
branch 'weekly' set up to track 'origin/weekly'.

$ git branch -vv
  master 908e654 [origin/master] xxxx
* weekly 2b54b23 [origin/weekly] xxxx

搞定~

相关文章

本篇内容主要讲解“gitee如何上传代码”,感兴趣的朋友不妨来...
这篇“从gitee上下的代码如何用”文章的知识点大部分人都不太...
这篇文章主要介绍“gitee如何下载仓库里的项目”,在日常操作...
本篇内容主要讲解“怎么在Gitee上更新代码”,感兴趣的朋友不...
本文小编为大家详细介绍“怎么将工程托管到gitee”,内容详细...
这篇文章主要介绍了gitee中图片大小如何调整的相关知识,内容...