I am writing a script that maintains a link to some commits in the repository, but if some commits become crushed, the links become invalid. I know there is a pre-rebase , but no post-rebase hook, so is there a way to determine which commits are compressed together?
For example, before rebase, I had this story:
cf79121 Refactor the trim_file_name method. Closes #1965. 82ed26a Updated dependencies and project versions. 8047297 Updated Node.js implementation package information. b2b727c Added "finished" callback, which is called for each "completed" or "failed" event.
After reinstalling, I received:
cf79121 Refactor the trim_file_name method. Closes #1965. 9b7ac26 Updated dependencies, project versions, and node.js package information. b2b727c Added "finished" callback, which is called for each "completed" or "failed" event.
How can I find out that 82ed26a + 8047297 = 9b7ac26 ?
source share