Background:
How can I know that the net state of the PR has not changed? I don't want to re-review it if literally the final state is identical.
Is there a fast way to get a checksum of the current content (but not commit sequence) of the tree?
"A checksum of the ... content" would be the TREE hash from the commit. So I guess you could
git log -n1 --format=%T
on each of the new and old commits, and see if the values match.
Or you could just use git diff to compare the commits' content (which will notice that the TREE hashes are the same and be done, so...)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With