summaryrefslogtreecommitdiff
path: root/builtin/rebase.c
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2019-07-24 21:14:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-07-25 15:58:03 (GMT)
commitcbea64615301e7dea0cd756cf0245653ecbf6edc (patch)
tree469b098d1a4dc5f079f4978a1e9404510900cfa1 /builtin/rebase.c
parentb697d92f56511e804b8ba20ccbe7bdc85dc66810 (diff)
downloadgit-cbea64615301e7dea0cd756cf0245653ecbf6edc.zip
git-cbea64615301e7dea0cd756cf0245653ecbf6edc.tar.gz
git-cbea64615301e7dea0cd756cf0245653ecbf6edc.tar.bz2
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 <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/rebase.c')
-rw-r--r--builtin/rebase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/rebase.c b/builtin/rebase.c
index db6ca9b..2f9041f 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"));