Aside from writing an alias or script, is there a shorter command for getting the diff for a particular commit?
git diff 15dc8^..15dc8
If you only give the single commit id git diff 15dc8, it diffs that commit against HEAD.
|
Aside from writing an alias or script, is there a shorter command for getting the diff for a particular commit?
If you only give the single commit id |
|||||
|
|
Use |
|||||||||||||||
|
|
Use:
as described in the following fragment of git-rev-parse(1) manpage (or in modern git gitrevisions(7) manpage):
This means that you can use Note: the description in Also, you can use |
|||||||||||||
|
|
If you know how far back, you can try something like:
Prior commits work something like this:
There are a lot of ways you can specify commits:
|
|||
|
|
|
As @mipadi points out, you can use This is, obviously not a very short hand, so I'm keeping this alias in my .gitconfig
This enables me to use |
|||||||
|
|
Uses an alias, so doesn't answer you question but I find these useful for doing what you intend...
|
|||
|
|