开发者

how to find the commit message by author?

开发者 https://www.devze.com 2023-01-28 14:46 出处:网络
How can I find the commit message by a spec开发者_C百科ific 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.git b

How can I find the commit message by a spec开发者_C百科ific 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.


git blame hello.java


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消