我希望能够找到在任何分支的任何提交中引入的某个字符串,我该怎么做?我找到了一些东西(我为Win32修改了),但git whatchanged
似乎并没有考虑其他分支(忽略py3k块,这只是一个msys / win换行修复)
git whatchanged -- <file> | \
grep "^commit " | \
python -c "exec(\"import sys,msvcrt,os\nmsvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)\nfor l in sys.stdin: print(l.split()[1])\")" | \
xargs -i% git show origin % -- <file>
解决方案是否缓慢并不重要。