Is there a way to do git blame --reverse
?
#1397
-
I can do git blame on a file in the following way:
However, I also want to do |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think with the current implementation it's not possible as it will always pass |
Beta Was this translation helpful? Give feedback.
I think with the current implementation it's not possible as it will always pass
commit
as argument. Ideally, one would be able to do something likerepo.blame(filepath, reverse='<start>..<end>')
.That would probably be fine for the parser, but it would need some refactoring to expose it in the public API.