Git shows changes in commits
You need to quickly show commit changes in Git for a fast workflow. We use git diff
and git show
and various options to help you show the exact commit changes you need.
We use gitrevisions
the option switch to find shortcuts for common use cases for Git to show the changes in a commit.
git diff <commit_ref>^!
Using Show Committed Changes
in Git
This is a neat and tidy way to quickly show the changes in a specific commit. It uses a gitrevisions <rev>^!
shortcut that packs all the find functionality into one short line of code.
git diff <commit_ref>^!
<commit_ref>^!
The short name refers to the commit <commit_ref>
, but not all of its ancestors.
Essentially, this means that it only shows the commit <commit_ref>
. git diff
The command then only shows the changes made by this commit.
Use in Git git diff <commit_ref>~ <commit_ref>
to show the changes of Commit
gitrevisions
A range <commit_ref>~..<commit_ref>
represents commits that we can <commit_ref>
reach from, but not from their ancestors.
Therefore, it only represents <commit_ref>
and not its ancestors.
In git diff
, it is git diff <commit_ref>~ <commit_ref>
the same as , and shows <commit_ref>
the changes between and its immediate parent.
git diff <commit_ref>~ <commit_ref>
Therefore, this shows only <commit_ref>
the changes made in the commit.
In Git, git diff <commit_ref>^ <commit_ref>
use
<commit-ref>^
Refers to the first parent of a commit.
git diff <commit_ref>^ <commit_ref>
It shows <commit_ref>
the changes between and its first parent. This <commit_ref>
is the same as if only the changes were made in commit .
Use file scope options in Git to show commit changes only in specific files/file types
We can pass file scope options to all the above methods to show changes only in specific files or file types.
git diff <commit_ref>^! <file|file type>
Quick Alternative – Use git show
the command and options to show committed changes in Git
We can use the command with a clever option git show
to only show the diffs made by a commit.
We'll use it as a shortcut here.
git show --color --pretty=format:%b <commot_ref>
If we pass these options, git show
only commit changes will be shown.
Pro tip: This also works for or 工作树
in . fails because has no ancestor.根提交
第一次提交
git diff
Root Commit
Root Commit
We see that fails git diff
due to Root Commit
, but git show
works.
Use git show
an alias with as a quick shortcut to show committed changes in Git
We saw above that we need to pass a number of options git show
to show only the differences in commits.
We can create a shortcut ~/.gitconfig
for this long command by setting a in the ./configure_command file .alias
nano ~/.gitconfig
[aliases]
od = show --color --pretty=format:%b
We add an alias od
or Only Difference
. Then we can use it as a shortcut.
git od <commit_ref>
We can write quick shortcuts to show the most recent commit changes by using
clever use of and gitrevisions
like .^
~
In Git, use git diff HEAD^ HEAD
the command to display the most recent commit changes.
HEAD
Refers to the latest commit.
git diff HEAD^ HEAD
It shows HEAD
the difference between the or most recent commit and its parent.
This means it only shows its changes (latest commit).
Show changes across commits in Git
You can use ~
gitrevisions
the suffix to jump back to HEAD
the nth ancestor of and show the changes in that commit.
git diff HEAD~2 HEAD~1
It will show HEAD
the difference between the second ancestor and the first ancestor of the or most recent commit.
So it will show the changes in either the first ancestor commit or the second most recent commit.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Push to a specific branch in Git
Publish Date:2025/04/02 Views:53 Category:Git
-
In Git, we use branches to develop independent features directly from the main workflow of the project. Since Git is considered to be the best version control system so far, we have local and remote branches in our repository for different
Solve the Git Push Everything Up-To-Date Problem
Publish Date:2025/04/02 Views:120 Category:Git
-
Git is a free, open source version control system designed to work with projects quickly and efficiently. You can make changes to your repo and push them to master branches. This article explains how to use git push the command to resolve e
Git merge development branch into feature branch
Publish Date:2025/04/02 Views:126 Category:Git
-
Creating new branches and merging them is considered to be the most powerful tool of Git. The ability of Git to create new branches and merge them into the development code is very useful for developers working in a team environment. This f
Understanding Git conflict markers
Publish Date:2025/04/02 Views:112 Category:Git
-
In this article, we will discuss git conflict markers. Understanding Git conflict markers When pulling changes from a remote repository, you may encounter merge conflicts. Merge conflict files can sometimes be confusing. A typical merge con
Selectively merge changes from different branches in Git
Publish Date:2025/04/02 Views:116 Category:Git
-
This article will discuss merging specific changes from one branch to another. As we know, when merging branches, Git merges all files without exception. You may find yourself in a scenario where you have some commits in one branch and you
Complete the merge after resolving conflicts in Git
Publish Date:2025/04/02 Views:63 Category:Git
-
This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si
Merge the development branch into Master in Git
Publish Date:2025/04/02 Views:167 Category:Git
-
This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development. Once we are happy with the changes, we can merge them into mas
Recovering a conflicting Git merge
Publish Date:2025/04/02 Views:160 Category:Git
-
This article explains the revert command when a merge conflict occurs git merge . We will also take a quick look at how to undo a git merge that was successful and has been pushed to a remote repository. Recovering a conflicting Git merge I
Git merge-base determines the most recent common ancestor of two branches
Publish Date:2025/04/02 Views:126 Category:Git
-
This article explains how we can find the most recent common ancestor commit in Git. This comes in handy when you create a branch or merge one branch into another. Without further ado, let’s get into today’s topic. Determine the most re