On Wed, Nov 2, 2011 at 10:29 AM, Alexey Shumkin <alex.crezoff@xxxxxxxxx> wrote: >> Also it seems that both syntaxes work: >> git diff v0.4..v0.5 >> git diff v0.4 v0.5 > honestly, I do not know the difference (at the moment :)) > may be gurus or manual will help to discover it As per the git-diff documentation, these two versions behave equally -- i.e. no differences. Comparing branches $ git diff topic master <1> $ git diff topic..master <2> $ git diff topic...master <3> 1. Changes between the tips of the topic and the master branches. 2. Same as above. 3. Changes that occurred on the master branch since when the topic branch was started off it. Cheers, Frans -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html