リポジトリ内のいくつかのコミットの参照を保持するスクリプトを書いていますが、一部のコミットが押しつぶされると、参照が無効になります。pre-rebase
フックはあるがフックがないことは知っているpost-rebase
ので、どのコミットが一緒に押しつぶされるかを判断する方法はありますか?
たとえば、リベースの前に、次の履歴がありました。
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.
リベース後、次のようになりました。
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.
82ed26a
+ 8047297
=であることをどのように確認できます9b7ac26
か?