Is there a way to do git blame --reverse?
#1397
Answered
by
Byron
nasifimtiazohi
asked this question in
Q&A
|
I can do git blame on a file in the following way: However, I also want to do |
Answered by
Byron
Jan 11, 2022
Replies: 1 comment 2 replies
|
I think with the current implementation it's not possible as it will always pass |
2 replies
Answer selected by
Byron
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think with the current implementation it's not possible as it will always pass
commitas 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.