标签: git shell
我在一个大文件上运行git blame命令,希望在文本文件中看到结果。
git blame
答案 0 :(得分:5)
不确定。在命令行上,只需将输出定向到您自己的文件而不是STDOUT:
STDOUT
git blame source_file > blame_result_file
答案 1 :(得分:2)
命令行重定向,适用于打印到标准输出的任何命令:
git blame> output.txt的