Possible Duplicate:
What's the difference between “..” and “…” in Git commit ranges?
I see on various tutorials two different syntaxes for commit ranges :
git log A..B
git log A...B
What's exactly the difference between both ?
Possible Duplicate:
What's the difference between “..” and “…” in Git commit ranges?
I see on various tutorials two different syntaxes for commit ranges :
git log A..B
git log A...B
What's exactly the difference between both ?
The first is: include all commits up to B, excluding all up to and including A. The second: include all commits up to be, excluding all up to and including common ancestor(s). See git help revisions
, section SPECIFYING RANGES.
Ouch.
Is a duplicate of What are the differences between double-dot ".." and triple-dot "..." in Git commit ranges?.
Why didn't it show up in my various searchs remains mysterious.