如何将git blame
之类的-C
选项传递给git gui blame
?只需输入
git gui blame -C somefile
结果
错误:未知开关`-C'
用法:git cat文件...
答案 0 :(得分:1)
我看到git gui blame
支持--line=x
选项,但似乎没有包含其他git blame
选项。
if {$subcommand eq "blame"} {
set subcommand_args {[--line=<num>] rev? path}
} else {
set subcommand_args {rev? path}
}