Two Kinds Of Dotted Range Notation
There are two kinds of dotted range notation in git -- ..
and ...
.
If you'd like to view all changes on your current feature branch since checking out from master
, you can use the two-dot notation:
You could also switch the refs around to see what has changed on master since checking out:
Then there is the three-dot notation. This will include all commits from the second ref that aren't in the first and all commits in the first that aren't in the second.
See man git-rev-parse
for more details.
Last updated