有没有办法将“git blame”的结果输出到文本文件?

时间:2013-09-23 16:24:52

标签: git shell

我在一个大文件上运行git blame命令,希望在文本文件中看到结果。

2 个答案:

答案 0 :(得分:5)

不确定。在命令行上,只需将输出定向到您自己的文件而不是STDOUT

git blame source_file > blame_result_file

答案 1 :(得分:2)

命令行重定向,适用于打印到标准输出的任何命令:

git blame> output.txt的