What does the `..` mean in git branch reference?

前端 未结 4 983
闹比i
闹比i 2020-11-29 05:10
git log origin/master
git log origin/master..

What is the exact difference with the above? I\'m trying to understand what exactly the ..

4条回答
  •  情深已故
    2020-11-29 05:47

    git log origin/master
    

    Would be like (fake command):

    git log INITIAL..origin/master
    

    While:

    git log origin/master..
    

    Is:

    git log origin/master..HEAD
    

提交回复
热议问题