From cbea64615301e7dea0cd756cf0245653ecbf6edc Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 24 Jul 2019 14:14:59 -0700 Subject: [PATCH] rebase: fix white-space This trailing space was inadvertently introduced in 9fbcc3d203 (Merge branch 'js/rebase-orig-head-fix', 2019-03-20). Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- builtin/rebase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/rebase.c b/builtin/rebase.c index db6ca9bd7d..2f9041fce2 100644 --- a/builtin/rebase.c +++ b/builtin/rebase.c @@ -2109,7 +2109,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix) strbuf_addf(&msg, "%s: checkout %s", getenv(GIT_REFLOG_ACTION_ENVIRONMENT), options.onto_name); if (reset_head(&options.onto->object.oid, "checkout", NULL, - RESET_HEAD_DETACH | RESET_ORIG_HEAD | + RESET_HEAD_DETACH | RESET_ORIG_HEAD | RESET_HEAD_RUN_POST_CHECKOUT_HOOK, NULL, msg.buf)) die(_("Could not detach HEAD"));