Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • jQuery
  • AngularJS
  • ReactJS
  • Next.js
  • React Native
  • NodeJS
  • Express.js
  • MongoDB
  • MERN Stack
  • PHP
  • WordPress
  • Bootstrap
  • Tailwind
  • CSS Frameworks
  • JS Frameworks
  • Web Development
Open In App
Next Article:
How to see the Changes in a Git commit?
Next article icon

How To List All Commits That Changed A Specific File In Git?

Last Updated : 25 Jun, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Git, a widely used version control system, allows developers to track changes in their codebase efficiently. One common need when working with Git is to list all commits that have modified a specific file. This can be particularly useful for tracking changes, understanding the history of a file, or identifying when a bug was introduced.

Table of Content

  • Approach 1: Using git log
  • Approach 2: Using git whatchanged

Approach 1: Using git log

git log is a command in Git that displays commit logs. It can be filtered to only show commits that have modified a specific file.

Syntax:

git log -- <file_path>

Example: In this example, we use git log to list all commits that have modified the README.md file.

git log -- README.md
Screenshot-2024-06-05-192340
How to list all commits that changed a specific file in Git

Approach 2: Using git whatchanged

git whatchanged is a historical command in Git that lists commits and the changes they introduced. It can be filtered to show commits that have modified a specific file.

Syntax:

git whatchanged -- <file_path>

Example: In this example, we use git whatchanged to list all commits that have modified the README.md file.

git whatchanged -- README.md
Screenshot-2024-06-05-193058
How to list all commits that changed a specific file in Git

Next Article
How to see the Changes in a Git commit?
author
nikunj_sonigara
Improve
Article Tags :
  • Web Technologies
  • Git

Similar Reads

  • How to list All Files in a Commit in Git?
    Working with Git, it's often essential to inspect the contents of your commits. Whether you need to review changes, debug issues, or understand the history of your project, knowing how to list all files in a commit is a fundamental skill. In this article, we’ll walk you through the steps to list all
    3 min read
  • How to see the Changes in a Git commit?
    Understanding the changes introduced in each commit is crucial for effective collaboration and version control in Git. Whether you are reviewing someone else's work or tracking your own modifications, Git provides powerful tools to inspect changes. This article will guide you through the various met
    4 min read
  • How to Get List of All Commits in Git?
    Git a powerful version control system, keeps track of all changes made to a project by recording each change in a commit. Sometimes, you need to see the complete list of commits to understand the project's history, track changes, or debug issues. Listing all commits in a Git repository can be useful
    3 min read
  • How to Commit Case-Sensitive Only Filename Changes in Git?
    Git is a distributed version control system that is widely used for tracking changes in source code during software development. By default, Git is case-sensitive, but the underlying file systems (like NTFS on Windows and HFS+ on macOS) can be case-insensitive. This can cause issues when renaming fi
    2 min read
  • How To Push a Specific Commit to Remote in Git?
    In version control systems like Git, pushing specific commits to a remote repository is a common task. Whether you're working on a feature branch or fixing a bug, sometimes you need to push only a particular commit without including earlier commits. Here, we'll explore the steps and commands to Push
    3 min read
  • How to Stash a Specific File or Multiple Files in Git?
    Git stash command is a powerful tool for developers, allowing them to temporarily save changes that are not yet ready to be committed. This is particularly useful when you need to switch branches or pull updates from a remote repository without committing to unfinished work. While `git stash` typica
    4 min read
  • How To Add Line Break To 'git commit -m' From The Command Line?
    In Git, you should frequently include multi-line, detailed messages when committing changes. Adding line breaks can be challenging, even though the git commit -m command is useful for single-line messages. You can use the command line to include line breaks in your commit messages using a variety of
    2 min read
  • How to Change Commit Message in Git?
    Changing a commit message in Git can be done in a few different ways, depending on whether the commit is the most recent one or an earlier commit. Here's an article on how to change a commit message in Git, covering scenarios both before and after the commit has been pushed to a remote repository.Th
    3 min read
  • How To List Only The Names Of Files That Changed Between Two Commits?
    Git is a powerful version control system that allows developers to track changes in their codebase. One common task is identifying which files have changed between two specific commits. This can be useful for code reviews, debugging, and understanding the impact of changes. In this article, we'll ex
    3 min read
  • How to Generate a Git Patch for a Specific Commit?
    Git patches are a powerful way to share changes between different repositories or branches without using direct branching or merging. A Git patch represents the differences between commits in a human-readable format and can be applied to other repositories or branches. This article will guide you th
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences