From: Paul Tan Date: Tue, 4 Aug 2015 13:51:58 +0000 (+0800) Subject: builtin-am: invoke post-applypatch hook X-Git-Tag: v2.6.0-rc0~20^2~17 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7088f8078a89d62733a12878f944d48365716f53;p=git-core%2Fgit.git builtin-am: invoke post-applypatch hook Since d1c5f2a (Add git-am, applymbox replacement., 2005-10-07), git-am.sh will invoke the post-applypatch hook after the patch is applied and a commit is made. The exit code of the hook is ignored. Re-implement this in builtin/am.c. Signed-off-by: Paul Tan Signed-off-by: Junio C Hamano --- diff --git a/builtin/am.c b/builtin/am.c index 7a7da943a..c313e58dc 100644 --- a/builtin/am.c +++ b/builtin/am.c @@ -1378,6 +1378,8 @@ static void do_commit(const struct am_state *state) fclose(fp); } + run_hook_le(NULL, "post-applypatch", NULL); + strbuf_release(&sb); }