Show files in Git commits
While working on a team project, we have to look at the committed files to see the progress of past commits. This happens to every programmer or developer who participates in a project by regularly committing code to a git remote repository.
Some people need complete information about it, some people just want to check the list of files with their names. There are multiple ways to view the files.
This article will discuss checking the file list instead of viewing the entire information using the Git command line.
Use git diff-tree
the command to display the files in a Git commit
This command is used to compare changes committed in the past in Git. We can take two sets of input data and get the output of these sets (the modifications made between them in the past).
It shows the changes made between the working tree and the index, or between two trees, two files on disk, or two blob objects in a remote repository.
The main command for checking a list of files is git-commit git diff-tree
. It should be the preferred method for listing the files in a commit, as it is considered the plumbing command in Git.
When we have to compare blob
patterns or textual content, we can do so by listing the files through multiple tree objects in Git.
Example command:
git diff-tree --no-commit-id --name-only -r <sha1-commit-hash>
The above command results will show the file names that were pushed to the remote repository in the past.
Output:
Test.html
javascript/Vue.js
javascript/App.js
Following are the parameter details used in the above sample commands.
-
--no-commit-id
Will suppress output of submitted IDs. -
--name-only
will show only the names of the affected files. We can also use--name-status
to show the status of the file, whether it is edited, modified or deleted. -
-r
The subtree will be entered by processing one by one.
Use git show
the command to display files in a Git commit
Following is another way to list files, but it is not as preferable as it is a user-friendly Porcelain command.
Example command:
git show --pretty="" --name-only <sha1-commit-hash>
Again, the above command will show the names of the files that were pushed to the remote repository.
Output:
Test.html
javascript/Vue.js
javascript/App.js
Listed below are the details of the parameters in the above example commands.
-
--pretty
Describes an empty format string, which avoids unwanted content at the beginning. -
--name-only
will only show the file name. Alternatively, we can use--name-status
to show the status of the file.
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