美文网首页
Git 常用命令记录

Git 常用命令记录

作者: 红叶潇潇 | 来源:发表于2024-05-23 16:00 被阅读0次

    1.拉取远程所有分支

    git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
    git fetch --all
    git pull --all
    

    2.放弃所有本地更改

    git checkout .
    

    相关文章

      网友评论

          本文标题:Git 常用命令记录

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