DEV Community

Hemant Govekar
Hemant Govekar

Posted on

1

Search Git commit message

This post will help you to search git commit messages and few other tricks of git log.

Git logging command

git log

The above command will help you see all the log details as shown below. Log details will include author, date and commit message.

Alt Text

git log --oneline

The above command will help you to have a concise view of the log as shown below (This will only show commit number and commit message) .

Alt Text

git log --oneline --grep="search word(s)"

The above command will help you search in git commit message for the search word(s) specified.

Alt Text

I create videos on ASP.Net, WebApi, Entity Framework, Javascript, Git and Bootstrap Design.
You can subscribe to my channel @
My Channel Link

Image of Timescale

🚀 pgai Vectorizer: SQLAlchemy and LiteLLM Make Vector Search Simple

We built pgai Vectorizer to simplify embedding management for AI applications—without needing a separate database or complex infrastructure. Since launch, developers have created over 3,000 vectorizers on Timescale Cloud, with many more self-hosted.

Read more →

Top comments (0)