微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

搞定~

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐