git diff - show only what's new on the remote

前端 未结 3 1569
自闭症患者
自闭症患者 2021-02-20 13:24

I have a local repo and a remote repo on github. For business reasons, they aren\'t in sync. I\'ve done a lot of work on the local that I\'m keeping, and now I\'m manually add

3条回答
  •  闹比i
    闹比i (楼主)
    2021-02-20 14:20

    I believe you can put 3 dots between the two branches in the command and then it does only whats new in the second with respect to the first, i.e.

    git diff master...feature
    

    to see what's new on feature, and

    git diff feature...master
    

    to see what's new on master. In your case feature can be origin/master and that should work fine.

提交回复
热议问题