rebase: invoke post-rewrite hook
commit96e19488f1e8f3964f5f329248852864b4ee4541
authorThomas Rast <trast@student.ethz.ch>
Fri, 12 Mar 2010 17:04:29 +0000 (12 18:04 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 13 Mar 2010 05:55:39 +0000 (12 21:55 -0800)
tree9f5b3f875f308d7e30bf2c3ac56a12519b8ed125
parent6f6bee3ba9260137f27bdcad2f8d0fac026f2b6d
rebase: invoke post-rewrite hook

We have to deal with two separate code paths: a normal rebase, which
actually goes through git-am; and rebase {-m|-s}.

The only small issue with both is that they need to remember the
original sha1 across a possible conflict resolution.  rebase -m
already puts this information in $dotest/current, and we just
introduce a similar file for git-am.

Note that in git-am, the hook really only runs when coming from
git-rebase: the code path that sets the $dotest/original-commit file
is guarded by a test for $dotest/rebasing.

Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-am.sh
git-rebase.sh
t/t5407-post-rewrite-hook.sh