diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-05-13 23:50:35 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-13 23:50:35 +0900 |
commit | b51a0fdc3822c2ef260f6d496b6df6d33b101e8a (patch) | |
tree | 62b916b74af5ee6f51b6e924d9d7a65311085420 /builtin | |
parent | Merge branch 'pw/rebase-i-internal' (diff) | |
parent | fix cherry-pick/revert status after commit (diff) | |
download | tgif-b51a0fdc3822c2ef260f6d496b6df6d33b101e8a.tar.xz |
Merge branch 'pw/clean-sequencer-state-upon-final-commit'
"git chery-pick" (and "revert" that shares the same runtime engine)
that deals with multiple commits got confused when the final step
gets stopped with a conflict and the user concluded the sequence
with "git commit". Attempt to fix it by cleaning up the state
files used by these commands in such a situation.
* pw/clean-sequencer-state-upon-final-commit:
fix cherry-pick/revert status after commit
commit/reset: try to clean up sequencer state
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/commit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index bd4b180c43..1c9e8e2228 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -1658,8 +1658,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix) die("%s", err.buf); } - unlink(git_path_cherry_pick_head(the_repository)); - unlink(git_path_revert_head(the_repository)); + sequencer_post_commit_cleanup(the_repository); unlink(git_path_merge_head(the_repository)); unlink(git_path_merge_msg(the_repository)); unlink(git_path_merge_mode(the_repository)); |