是否有可能看到谁在git blame报告的提交之前编辑了特定的行,就像一个给定行的提交历史?
例如,我运行以下(在优秀的uncrustify项目上):
$ git blame -L10,+1 src/options.cpp
^fe25b6d (Ben Gardner 2009-10-17 13:13:55 -0500 10) #include "prototypes.h"
我如何才能找到谁在提交fe25b6d之前编辑了这一行?在提交之前是谁编辑的?
是否有可能看到谁在git blame报告的提交之前编辑了特定的行,就像一个给定行的提交历史?
例如,我运行以下(在优秀的uncrustify项目上):
$ git blame -L10,+1 src/options.cpp
^fe25b6d (Ben Gardner 2009-10-17 13:13:55 -0500 10) #include "prototypes.h"
我如何才能找到谁在提交fe25b6d之前编辑了这一行?在提交之前是谁编辑的?
当前回答
还有递归指责。它可以安装
npm install -g recursive-blame
其他回答
基于stangls的答案,我把这个脚本放在我的PATH(甚至在Windows上)作为git-bh:
这允许我查找所有涉及到一个词的提交:
git bh path/to/myfile myWord
脚本:
#!/bin/bash
f=$1
shift
csha=""
{ git log --pretty=format:%H -- "$f"; echo; } | {
while read hash; do
res=$(git blame -L"/$1/",+1 $hash -- "$f" 2>/dev/null | sed 's/^/ /')
sha=${res%% (*}
if [[ "${res}" != "" && "${csha}" != "${sha}" ]]; then
echo "--- ${hash}"
echo "${res}"
csha="${sha}"
fi
done
}
您可以使用git log -L来查看一行范围的演变。
例如:
git log -L 15,23:filename.txt
表示“跟踪文件名.txt文件中第15行到第23行的演变”。
安布尔的回答是正确的,但我觉得不清楚;语法为:
git blame {commit_id} -- {path/to/file}
注意:——用于将树状sha1与相对文件路径分开。1
例如:
git blame master -- index.html
这一切都要归功于安布尔!:)
对于这个问题,一个非常独特的解决方案是使用git log,正如Andre在这里解释的那样:
git log -p -M——follow——stat——path/to/your/file
我写了一个ublame python工具,它可以返回影响给定搜索词的文件提交的简单历史,你可以在þroject页面上找到更多信息。