Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-11-03 17:32:29 +0300
committerJunio C Hamano <gitster@pobox.com>2018-11-05 04:24:55 +0300
commit29d51e214c6b9078abaac7597c21306ac0f4deb4 (patch)
treec36db79e560b49fa2fb97b6705be2502c00d0378 /sequencer.c
parent34b47315d9721a576b9536492cca0c11588113a2 (diff)
sequencer.c: remove a stray semicolon
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index 8dd6db5a01..4d5abb9f08 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -4647,7 +4647,7 @@ int complete_action(struct replay_opts *opts, unsigned flags,
if (checkout_onto(opts, onto_name, oid_to_hex(&oid), orig_head))
return -1;
-;
+
if (require_clean_work_tree("rebase", "", 1, 1))
return -1;