欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

git pull 所有分支

程序员文章站 2024-02-12 10:40:04
...

git pull 所有分支,如下:

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

上面的操作是建立在已经配置了 ssh key 的基础上。
生成 ssh key 命令如下:

ssh-****** -t rsa -C “xxx.com”

相关标签: Ubuntu