Tag: blame

Git怪 – 之前的承诺?

我喜欢git blame命令,这对于追踪那些不需要编写代码的人来说非常有用。 🙂 然而, 在 git blame所提交的提交之前 ,是否可以看到谁编辑了特定的行,例如提交给定行的提交历史logging? 例如,我运行以下(在超级uncrustify项目): $ git blame -L10,+1 src/options.cpp ^fe25b6d (Ben Gardner 2009-10-17 13:13:55 -0500 10) #include "prototypes.h" 如何在提交fe25b6d 之前找出谁编辑了该行? 谁是在提交之前编辑它的? 我相信这是可能的,但我的git-fu很弱。