美文网首页
git比较本地仓库和远程仓库的差异

git比较本地仓库和远程仓库的差异

作者: kyle0x54 | 来源:发表于2017-07-25 19:55 被阅读0次
    1. 更新本地的远程分支
    git fetch origin
    

    2.本地与远程的差集 :(显示远程有而本地没有的commit信息)

    git log master..origin/master
    

    3.统计文件的改动

    # git diff <local branch> <remote>/<remote branch>
    git diff --stat master origin/master
    

    相关文章

      网友评论

          本文标题:git比较本地仓库和远程仓库的差异

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