Git神操作
Posted shuiyonglewodezzzzz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git神操作相关的知识,希望对你有一定的参考价值。
git branch -r | grep -v ‘\->‘ | while read remote; do git branch --track "$remote#origin/" "$remote"; done git fetch --all git pull --all
一次性拉取所有分支代码
git branch | while read line; do git checkout $line; git pull ; done
以上是关于Git神操作的主要内容,如果未能解决你的问题,请参考以下文章