powershell - git blame - fatal: bad revision '22' -


according page (http://git-scm.com/book/en/v2/git-tools-debugging-with-git ) should use comma between line numbers when using git blame.

however, if try out on windows machine using powershell:

git blame -l 12,22 <name of file> 

i fatal: bad revision '22'

what's problem? powershell?

try quoting argument -l (e.g. -l "12,22").

comma operator in powershell mis-parsing command without quotes or that.


Comments