一次性git clone/push所有分支的方法
【代码】一次性git clone/push所有分支的方法。
·
git clone所有分支
git clone http://xxx.xxx.xxx.git
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
git push所有分支
git push origin --all
更多推荐
所有评论(0)