根据本页(http://git-scm.com/book/en/v2/Git-Tools-Debugging-with-Git . p .)当使用git blame
时,我应该在行号之间使用逗号。
但是,如果我在我的Windows机器上使用Powershell进行测试:
git blame -L 12,22 <name of file>
我得到fatal: bad revision '22'
有什么问题吗?跟Powershell有关吗?
尝试引用-L
(例如-L "12,22"
)的参数
逗号是powershell中的操作符,所以如果没有引号或类似的东西,它可能会错误解析命令。