当前位置:   article > 正文

git进阶 | 02 - git设置追踪所有远程分支_批量设置 git 所有分支 trace

批量设置 git 所有分支 trace

一、clone默认结果

以TencentOS-Tiny仓库为例:

git clone https://github.com/OpenAtomFoundation/TencentOS-tiny
  • 1


这个时候查看本地分支情况:

git branch
  • 1


查看隐藏分支:

git branch -a
  • 1

二、追踪所有远程分支

git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
  • 1


执行后再次查看本地分支:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/696910
推荐阅读
相关标签
  

闽ICP备14008679号