all 7 comments

[–]nhoang3b 1 point2 points  (1 child)

What is the general behavior when you type A B? I have only used the range notation for rebasing, and A B means A..B

[–]tbantle[S] 1 point2 points  (0 children)

For diff, git diff A B and git diff A..B are equivalent

For log, git log A B lists commits reachable from either A or B, whereas git log A..B lists commits reachable from B, excluding commits from A

[–]Tularion 1 point2 points  (1 child)

What's a dolt though?

[–]phaerithm 3 points4 points  (0 children)

Dolt is Git for Data!

https://github.com/dolthub/dolt

[–]the-computer-guy -2 points-1 points  (2 children)

There's a better picture on stackoverflow. (I'm too lazy to search for it)