Some Git commands take commit ranges and one valid syntax is to separate two commit names with two dots ("..") and another syntax uses three dots ("..."). What's the difference?
|
It depends on wether you're using a log command or a diff command. In the log case, it's in the 'man git-rev-list' documentation:
Which basically means that you'll get all commits that are in either of the two branches, but not in both. In the diff case, it's in the 'man git-diff' documentation:
Which is a big fuzzy. Basically it means it shows only the differences in that branch compared to another branch: it looks for the last common commit with the first committish you gave it, and then diffs the second committish to that. It's an easy way to see what changes are made in that branch, compared to this branch, without taking notice of changes in this branch only. The .. is somewhat simpler. In the git-diff case, it's the same as a 'git diff A B' and just diffs A against B. In the log case, it shows all commits that are in B but not in A. |
|||||||||
|
|
A good explanation of double-dot vs. triple-dot is at: http://git-scm.com/book/ch6-1.html#Commit-Ranges |
|||
|
|