how can i do a diff from one particular commit to another .. ? also, when i do a diff on one of the commits, what is it comparing to, the previous commit? or the current file?
If the sourcetree is following the logic of git itself (and I see no reason why it shouldn't), then it should be like this. If you want to diff two commits, then you'll use:
git diff commit1 commit2
where commit1 and commit2 are hash values (or part of it) of each commit. Also, when doing a diff on just one of the commits, like this:
git diff commit
then you are comparing the current file with that commit and if you want to compare it to the version of the file in your HEAD, you would use:
git diff HEAD commit
and if you want to compare previous two commits, you can use:
git diff HEAD HEAD~1
(HEAD~1 means "1 commit before the HEAD", and you can use also HEAD~2, HEAD~3, etc)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.