aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/rebase.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-07-29 12:39:13 -0700
committerJunio C Hamano <gitster@pobox.com>2019-07-29 12:39:14 -0700
commit38dac334d78fd8f0568180b714554bee1b23b6a0 (patch)
tree1a2c48b62b2f872dc345806b5a2ac8dfc4d08766 /builtin/rebase.c
parentc3d4c20c7d862fb168b4b2126443e13c55737507 (diff)
parent80dfc9242ebaba357ffedececd88641a1a752411 (diff)
downloadgit-38dac334d78fd8f0568180b714554bee1b23b6a0.tar.gz
Merge branch 'js/rebase-cleanup'
A few leftover cleanup to "git rebase" in C. * js/rebase-cleanup: git: mark cmd_rebase as requiring a worktree rebase: fix white-space
Diffstat (limited to 'builtin/rebase.c')
-rw-r--r--builtin/rebase.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/builtin/rebase.c b/builtin/rebase.c
index 95d34223e9..670096c065 100644
--- a/builtin/rebase.c
+++ b/builtin/rebase.c
@@ -1492,10 +1492,6 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
usage_with_options(builtin_rebase_usage,
builtin_rebase_options);
- prefix = setup_git_directory();
- trace_repo_setup(prefix);
- setup_work_tree();
-
options.allow_empty_message = 1;
git_config(rebase_config, &options);
@@ -2126,7 +2122,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"));