Git search commit messages using the command line
We can format git log
the command to show commits with commit messages that match a specified pattern. This makes it easier when you want to find a commit but your repository has hundreds of commits.
This article will discuss the process of searching the commit history and filtering by commit messages.
Search commit messages using the command line
Although it would be easier to review our commit history using the git log command with the --oneline flag as shown below.
The list goes on and on, and since we have over 200 commits in this repository, browsing this list will take time. We can simplify it by formatting the git log command so that it can be filtered according to our needs.
In our case, we want to display the commits whose commit message has Update. We can run git log
the command as shown below.
Order:
$ git log --grep=Update
The command above will display any commit whose message matches the pattern update.
The output is as follows:
Our repository still has many commits with updates in their messages. We can add the --oneline flag to simplify the output.
Order:
$ git log --grep=Update --oneline
The output is as follows:
It's that simple. Let's quickly look at other filtering options in Git.
Filter commit history by author
You can git log
filter your commit history by author using the command.
Order:
$ git log --author="Authors-name"
Filter commit history by content
You can use git log
to search for commits whose changes introduced or removed specific patterns in lines of code.
Order:
$ git log -S"Content"
Now, let's take an example where we will try to search for commits that introduced or removed the phrase API in a single line of code.
Order:
$ git log -S"API" --oneline
Again, we include the --oneline option to simplify the display.
Output:
Summarize
Git allows us to filter out the output of the git log command when we want to search the commit history . In addition, we can make the output showing the commit history simpler.
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
Close the Git commit editor on Windows
Publish Date:2025/03/31 Views:62 Category:Git
-
In this article, we will discuss how to exit the Git commit editor. This can be a little tricky, especially if you are new to Git bash . Let's see how to exit the editor on Windows. Close the Git commit editor on Windows We will look at a t
Git commit some files in one branch and make them available in another branch
Publish Date:2025/03/31 Views:194 Category:Git
-
This article shows how to commit specific files in one branch and make those files available in another branch. Suppose you have a project and you create a feature branch to make some slight modifications to the code. You modify and add new
Modifying a specific commit in Git
Publish Date:2025/03/31 Views:100 Category:Git
-
This article explains how we can modify a specific commit in Git. We may need to rename, compress, edit, or add files to a commit. The best way is to use the git rebase command in interactive mode . What do you think of this? Modifying a sp
Git overwrites Master with branch
Publish Date:2025/03/31 Views:79 Category:Git
-
Git is used to keep track of the source code we are working with; it also facilitates collaboration and helps us keep our projects in their current state. As we develop new features, their history should be at our fingertips as it is very h
Git Squash Commits
Publish Date:2025/03/31 Views:162 Category:Git
-
We will learn about Git squashing in this tutorial. The basic idea is to merge multiple consecutive commits into one. The main purpose is to compress many commits into a few related commits. Thus, doing so will make the git history look con
Merge remote branches into local branches in Git
Publish Date:2025/03/31 Views:134 Category:Git
-
This tutorial will merge a remote git branch into a local branch by cloning the remote repository and updating the changes locally. Merge remote branches into local branches in Git by cloning the remote repository and updating the changes l
Changing drives in Git Bash
Publish Date:2025/03/30 Views:57 Category:Git
-
This short article will discuss how we can use Git Bash to have a Unix-style command line environment in Windows operating system and run multiple commands in this terminal. Git Bash Git is a collection of command-line utilities created to
Adding a remote branch in Git
Publish Date:2025/03/30 Views:142 Category:Git
-
Git does not allow its developers to create new branches on remote repositories. But instead, we can push an already existing local branch, and after doing so, we can bring it to the remote repository using some Git commands. In every versi
Synchronize your local repository with a remote repository in Git
Publish Date:2025/03/30 Views:92 Category:Git
-
This article outlines the process of syncing your local repository with a remote repository. We will also see how to sync a GitHub branch with a remote repository on the command line. Synchronize your local repository with a remote reposito