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

Posted Mculover666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git进阶 | 02 - git设置追踪所有远程分支相关的知识,希望对你有一定的参考价值。

一、clone默认结果

以TencentOS-Tiny仓库为例:

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


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

git branch


查看隐藏分支:

git branch -a

二、追踪所有远程分支

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


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

以上是关于git进阶 | 02 - git设置追踪所有远程分支的主要内容,如果未能解决你的问题,请参考以下文章

Git-进阶-远程仓库的使用

git创建远程分支的应用实践

git版本管理,git tag

git版本管理,git tag

git追踪分支

Git的常用命令