JIYIK CN >

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

View the commit history of a file in Git

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

This article explains how to view the commit history associated with a specific file in Git.

Git is a version control system; we use Git to track changes made to our files.

Often we need to browse and view the changes made to a particular file. Git provides commands to view the history of commits associated with a file along with complete details such as the specific changes made in the file.

We will now illustrate this with an example.


gitkUse and git logto view the commit history associated with a file in Git

In a collaborative development environment, we often want to view the changes made to a specific file in the commit history of that file in the Git repository.

We want to find out what specific changes were made to a specific file in a given commit.

Let's say we have a README.txtfile called . We might use this file to save information about the project since the project started.

Now, suppose we want to view the commit history of that particular file. To do this, we can use the tools provided by Git gitk.

Gitk is a graphical repository browser. It is used to explore and visualize the history of a repository.

The syntax for gitkviewing the commit history of a specific file is gitk <filename>.

Therefore, to view README.txtthe history of the file, we will execute the following command.

$ gitk README.txt

It launches the Gitk graphical user interface (GUI) as shown below.

gitk-example1

The upper-left pane shows README.txtcommits to the files in the repository, with the most recent commit at the top.

The lower right corner shows a list of files affected by the selected commit, which displays README.txtthe paths to the file names.

The lower left pane shows README.txtthe commit details and the full diff for the file.

Therefore, the Gitk tool is very suitable for viewing the commit history related to a specific file in Git.

You can also use the command git logfor similar purposes. The command syntax for viewing the commit history of a specific file isgit log -p <filename>

So, in our case, we will execute the command as follows.

$ git log -p README.txt
commit 8f2aa9af1a34ba8d57f60edcb6a29dfa23401e39 (HEAD -> main, origin/main)
Author: John Doe <johndoe@xyz.com>
Date:   Mon Dec 27 12:52:13 2021 +0530

    updated Readme.txt

diff --git a/project-path/README.txt b/project-path/README.txt
index 870c0a8..d09182c 100644
--- a/project-path/README.txt     
+++ b/project-path/README.txt     
@@ -1 +1,3 @@
-Initial project commit
+Further changes done
+1. This change
+2. That change

commit d25da7f49fae88a50bbc144df2429748077a2063
Author: John Doe <johndoe@xyz.com>
Date:   Mon Dec 27 12:50:53 2021 +0530

    Inital Readme.txt

diff --git a/project-path/README.txt b/project-path/README.txt
new file mode 100644
index 0000000..870c0a8
--- /dev/null
+++ b/project-path/README.txt     
@@ -0,0 +1 @@
+Initial project commit

The command with -pthe -p option git logdisplays the commit history of a file and the differences between each commit.

The Gitk tool can be thought of as git loga GUI wrapper for the command.

So, we have detailed how to view the history of commits associated with a specific file in Git.

For more information, please visit -

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