Reputation: 10379
How can I find the commit message by a specific author?
For example, if we are both working on a project and I want to find the line added by another author for the file hello.java
.
Upvotes: 0
Views: 547
Reputation: 713
Are you looking for the commit message, or for the specific line changed by the commit?
If you're looking for the message, use git log
to see all of the commit messages. If you mean the specific code line, KingCrunch has what you want.
Upvotes: 0