OSDN Git Service

builtin-am: invoke post-applypatch hook
authorPaul Tan <pyokagan@gmail.com>
Tue, 4 Aug 2015 13:51:58 +0000 (21:51 +0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 5 Aug 2015 05:02:11 +0000 (22:02 -0700)
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 <pyokagan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/am.c

index 7a7da94..c313e58 100644 (file)
@@ -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);
 }