On git, how could I compare the same file between two different commits (not contiguous) on the same branch (master for example)?
I'm searching for a Compare feature like the one in VSS or TFS, is it possible in Git?
|
|
For instance, to see the difference for a file "main.c" between now and two commits back, here are two equivalent commands:
|
|||||
|
|
You can also compare two different files in two different revisions, like this:
|
|||
|
|
|
If you want to see all changes to the file between the two commits on a commit-by-commit basis, you can also do
|
|||
|
|
|
If you have configured the "difftool" you can use
Example: Comparing a file from its last commit to its previous commit on the same branch: Assuming that if you are in your project root folder
You should have the following entries in your ~/.gitconfig or in project/.git/config file. Install the p4merge [This is my preferred diff and merge tool]
|
||||
|
|
|
If you want to make a diff with more than one file, with the method specified by @mipadi: E.g. diff between
This will recursively search your |
|||
|
|
|
|
||||
|
|
|
Just another way to use git's awesomeness ...
|
|||
|
|
|
If you have several files or directories and want to compare non continuous commits, you could do this: Make a temporal branch
Rewind to the first commit target
Cherry picking on those commit interested
Apply diff
When you done
|
|||
|
|