Kohan95
Kohan95

Reputation: 10379

how to find the commit message by author?

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

Answers (2)

AaronM
AaronM

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

KingCrunch
KingCrunch

Reputation: 132051

git blame hello.java

Upvotes: 2

Related Questions