JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Git shows changes in commits

Author:JIYIK Last Updated:2025/04/02 Views:

You need to quickly show commit changes in Git for a fast workflow. We use git diffand git showand various options to help you show the exact commit changes you need.

We use gitrevisionsthe 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 diffThe command then only shows the changes made by this commit.

Submit ref abbreviation


Use in Git git diff <commit_ref>~ <commit_ref>to show the changes of Commit

gitrevisionsA 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.

tilda method 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 .

Insert symbol method 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>

File-wide options to commit changes


Quick Alternative – Use git showthe command and options to show committed changes in Git

We can use the command with a clever option git showto 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 showonly commit changes will be shown.

Pro tip: This also works for or 工作树in . fails because has no ancestor.根提交第一次提交git diffRoot CommitRoot Commit

git show differences with options

git diff fails due to root commit

We see that fails git diffdue to Root Commit, but git showworks.


Use git showan 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 showto show only the differences in commits.

We can create a shortcut ~/.gitconfigfor this long command by setting a in the ./configure_command file .alias

nano ~/.gitconfig

[aliases]
od = show --color --pretty=format:%b

Add alias in gitconfig

We add an alias odor Only Difference. Then we can use it as a shortcut.

git od <commit_ref>

Using aliases to show differences

We can write quick shortcuts to show the most recent commit changes by using clever use of and gitrevisionslike .^~


In Git, use git diff HEAD^ HEADthe command to display the most recent commit changes.

HEADRefers to the latest commit.

git diff HEAD^ HEAD

It shows HEADthe difference between the or most recent commit and its parent.

This means it only shows its changes (latest commit).

Recent commit shortcuts


Show changes across commits in Git

You can use ~ gitrevisionsthe suffix to jump back to HEADthe nth ancestor of and show the changes in that commit.

git diff HEAD~2 HEAD~1

It will show HEADthe 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.

Commit changes rarely

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.

Article URL:

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

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial