Nico -telmich- Schottelius wrote (2008-06-06 14:24 +0200): > I want to compare 'configure.in' from the master branch with > 'configure.ac' from the gpm-2-dev branch. You could do: $ git diff master:configure.in gpm-2-dev:configure.ac In general form it means: $ git diff <commit1>:<path1> <commit2>:<path2> You can also view directories and files similar way: $ git show <commit>:<path> And <commit> can be anything that refers to a commit, e.g. a branch name, a tag, SHA1 or a relative pointer like master^2~5. -- 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