赞
踩
Git 找出代码是谁写的
列出整个文件
git blame 文件名
搜索关键词
git blame 文件名 | grep "关键词"
指定行号
git blame 文件名 -L 起始,结束
查看改了哪些内容
git show commitID
详见文档
部分参数如下