Git 找出谁更改了文件

示例

// 按指定文件的每一行显示作者和提交
git blametest.c

// 按指定行显示作者电子邮件和提交 
git blame -etest.cfile

// 通过指定范围限制对行的选择
git blame -L 1,10test.c