git log origin/master git log origin/master..
What is the exact difference with the above? I\'m trying to understand what exactly the ..
..
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