• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

SoftwareTestingo - Interview Questions, Tutorial & Test Cases Template Examples

SoftwareTestingo - Interview Questions, Tutorial & Test Cases Template Examples

  • Home
  • Test Case Examples
  • Interview Questions
  • Interview Questions Asked
  • Java
  • Selenium
  • Manual Testing
  • SQL Tutorial For Beginners
  • Difference
  • Tools
  • Contact Us
  • Search
SoftwareTestingo » Tools » GIT » Git Log Command

Git Log Command

Last Updated on: July 27, 2022 By Softwaretestingo Editorial Board

What We Are Learn On This Post

  • What is Git Log Command?
  • How to Exit the git log Command?
  • Git Log Oneline
  • Git Log Stat Command
  • Git log P or Patch
  • Git Log Graph
  • Filtering the Output of git log
  • Filter by Author or Committer
  • Filter by Date
  • Git shortlog Command

Git Log Command: Distributed version control software like Git helps individuals and teams manage their source code by taking snapshots of changes and bundling them into commits and repositories. This allows developers to explore old configurations of code, which can be helpful for debugging or adding new features. Knowing when or who made a change is also beneficial.

Git allows you to access “meta” data for each commit, including the author, references to other commits, reasons for changes, and how those changes affected the code. This is called logging and we’ll be talking about it today.

Post On:GIT Log Command
Post Type:GIT Tutorial
Published On:www.softwaretestingo.com
Applicable For:Freshers & Experience
Get Updates:Join Our Telegram Group

In this blog post about Git log we are going to discuss:

  • What is Git Log?
  • Git command to view commit history
  • Git command to view commit history for a file
  • Git command to view commit history of a range
  • Git command to view a limited number of commit history

What is Git Log Command?

The git log command is used to display a list of all commits made to a repository. This list includes the committed author, date, and message. You can execute this command by entering: git log

Git Log Command to See Repository History
Git Log Command to See Repository History

The above text displays a commit history with various other information included. The commits are displayed in reverse chronological order, with the most recent commit appearing at the top. This is useful for Git repositories that are used by more than one person.

When a user executes the git log command, then you can get four important information and those are:

Add one git commit history and in each section paste the information

  • Commit Hash: When you’re looking at a commit in Git, the first part of the commit log is always the “commit hash”. If you’re not sure what a commit hash is, don’t worry! It’s just a string of characters that uniquely identify a commit. Git uses these hashes to reference commits internally, so it’s important to notice them in the git log.
  • Commit Author: This section provides information about who made the changes to the repository, including the author’s name.
  • Commit Date: This part of the text displays the date and time of when the commit was made, including the day and time zone. It’s helpful to have this information included because people working on a project from different geographical locations can refer to it.
  • Commit Message: This section displays the commit message that was written at the time the changes were committed.

When there are lots of commits on your repository that time some users don’t want to see the huge list of git commits. That’s why Git log has providing many options that help you filter out the commit history according to your preference, giving you some power over what is displayed.

How to Exit the git log Command?

Git Log Command 1
When Git Commit History Is More

If you ever find yourself in a situation where you’re stuck in all the commands, don’t worry! There’s an easy way to get back to bash. Just hit the Enter key and you’ll be navigated to the older command until you reach the end flag (end).

Git Help All Command
Git Help All Command
Git Help End
Git Help End

If you ever find yourself in such a condition, the solution is to press q (Q for quit). This will exit you from the situation and take you back to the command line. From there, you can perform any of the commands.

Git Log Oneline

This option displays the output as one commit per line, which can be helpful in seeing a concise view of the data. Additionally, it shows the output in brief like the first seven characters of the commit SHA and the commit message.

You can use the command below:

git log –oneline

Git Log Oneline
Git Log Oneline

The view of the text has changed so that fewer details are visible and it is now only possible to see one line at a time. This makes sense because each commit is now shown in a single line, with the commit id followed by the commit message.

Commit Id: Each commit has a shortened ID, which is a compressed form of the commit’s hash. Even though hashes are not sequential numbers, they can still be used to uniquely identify commits.

Commit Message: The commit message should be clear and concise so that you can understand the purpose of the commit.

Git Log Stat Command

The git log stat command helps you see which files have been modified, and how many lines in each file were changed and provides a summary line of the total records updated.

You can execute the command by entering like below”

git log –stat

Git Log Stat
Git Log Stat

Git log P or Patch

The git log patch command display is super handy because it not only shows the files that have been modified but also provides the juicy details of where those modifications occurred. No more guessing which lines were added, removed, or updated!

git log –patch

Git Log Patch
Git Log Patch

The output above displays the files that have been modified, as well as the line numbers of the added or removed lines.

Git Log Graph

This command allows you to see your commits in a graphical form, which is much easier to understand. You can visualize the rate of commits and other factors affecting your commits.

We type the following commands to view this.

$ git log –graph

Git Log Graph
Git Log Graph

$ git log –graph–oneline // gives details in separate lines

Git Log Graph Oneline
Git Log Graph Oneline

Filtering the Output of git log

If you want to view a list of all the commits made to your repository, git log is the command for you. By default, it returns a list of all commits using this structure. While this can be helpful if there aren’t many commits, it can quickly become difficult to read if there are too many.

Let us find out the different options of git log:

Filter by Most Recent

If there are a number of commits happening in a repository then when you execute the command git log the huge list will appear. So to remove the complexity of this type of behavior we can fewer the commit list. To Display less number of commits you can use the below command:

Git log -n 2 (Display last 2 commits)

Git Log to Show Specific Number Of Commits
Git Log to Show Specific Number Of Commits

Note: This will display the last-mentioned number of commits.

Filter by Author or Committer

Git is a distributed version control system, so in real-world projects, multiple multiple developers and testers are working on that from various locations. In that case, suppose you want to list down all the commits by a particular team member then we can use the –author flag to filter the commits by author name with the git log.

When this command executes it takes a regular expression and returns the list of the commits which match the pattern. We can write the command below

git log –author=”Author Name”
git log –committer=”Author Name”

Note: You have to enter the exact name of the user instead of any pattern.

If you notice the above output then you can see all the commits by the entered author name. Instead of the full sentence (Author name), you can use string also (first name).

Let us try to execute the below statement:

git log –author=”SoftwareTestingo”
git log –committer=”SoftwareTestingo”

When we execute the above statement, it will list down all the users who have includes the name. That means when you are entering the author’s name it’s not mandatory to enter the exact match full name, you can specify the phrase also.

GitLog Filter By Author Name or Committer
GitLog Filter By Author Name or Committer

Note: The Entered Name is Case sensitive

If you see the commit details on Git bash it also contains the author’s email id. So we can also search with the email id. Suppose you want to track down all the commits whose email service provider is outlook.

git log –author=”@email.com”  

Git Log Filter By Email
Git Log Filter By Email

By Commit message:

We can filter the commits by commit message using the grep option, which will work similarly to the author option. You can write the git command like below:

git log –grep=” Commit message.”  

Git also allows users to enter the short form of the commit message. so you can write the command like below:

git log –grep=” file”  

Git Log Filter With Commit Message
Git Log Filter With Commit Message

The above output displays all commits that contain the word commit in its commit message. This can be helpful when you’re trying to find a specific commit or narrow down your search.

Filter by Date

Git log can be filtered by date using the –before and –after flags. These flags accept a wide range of date formats, but the two most commonly used are relative references and full dates.

If we want to get a list of commits after June 24, 2022, we could use this command:

git log –after=”2022-24-07″

GitLog Filer By Date
GitLog Filer By Date

We have set a date to filter our commits. If we want to get a list of commits from before yesterday, we can do so using this command:

git log –before=”yesterday”

Git Log Filer By Day
Git Log Filer By Day

Similarly, if you want to display commits between two days then you can write your command like below

git log –after=”2022-7-24″ –before=”2022-7-27″

Git Log Filter Between Two Dates
Git Log Filter Between Two Dates

Git shortlog Command

The git shortlog command is a quick way to see who has made what changes to a repository. The output of the command groups the information by author, so you can easily see which person made which changes.

git shortlog

Git Shortlog
Git Shortlog

Conclusion

The git log command allows you to view the history of changes made to a repository, as well as who made those changes and when. You can use filters with the git log command to show only the information that you are interested in.

The git log command has two types of flags. Some help you format the output, while others can help filter commits returned by the command. See you at the next git tutorial.

    Filed Under: GIT

    Reader Interactions

    Leave a Reply Cancel reply

    Your email address will not be published. Required fields are marked *

    Primary Sidebar

    Join SoftwareTestingo Telegram Group

    Categories

    Copyright © 2023 SoftwareTestingo.com ~ Contact Us ~ Sitemap ~ Privacy Policy ~ Testing Careers