how to find commit massage in git
find commit massage in git
Use the git log command in Git to locate commit messages. Go to your Git repository in a terminal or command prompt that has been opened. The commit history and commit message can then be viewed by using the following method.
There is command represent list of commits with details such as commit hash, author, date, and commit message. The output will be displayed in reverse chronological order, with the most recent commits at the top.
In this article we learn about git log command has many more options for customizing the output.
Check out article on similar topic.