美文网首页
git拉取远程仓库的所有分支代码

git拉取远程仓库的所有分支代码

作者: lvyz0207 | 来源:发表于2020-09-07 10:59 被阅读0次
    git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
    git fetch --all
    git pull --all
    

    相关文章

      网友评论

          本文标题:git拉取远程仓库的所有分支代码

          本文链接:https://www.haomeiwen.com/subject/faskektx.html