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:
authorJunio C Hamano <gitster@pobox.com>2023-07-06 21:54:47 +0300
committerJunio C Hamano <gitster@pobox.com>2023-07-06 21:54:47 +0300
commit391414e971d552e5e0fa1363347ec2c076062daf (patch)
tree8f2e9d061386ff10a340dcb10e67eeb2a53a3ebe /wt-status.c
parent84b889bd035886cb19b1e9a9524dcf8a431836cd (diff)
parenta096a889f43a40223bae89efa7d1896e0d4c37cb (diff)
Merge branch 'jk/cherry-pick-revert-status'
During a cherry-pick or revert session that works on multiple commits, "git status" did not give correct information, which has been corrected. * jk/cherry-pick-revert-status: fix cherry-pick/revert status when doing multiple commits
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wt-status.c b/wt-status.c
index ea4e49c42b..8a1a4fb1f0 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -1793,10 +1793,10 @@ void wt_status_get_state(struct repository *r,
oidcpy(&state->revert_head_oid, &oid);
}
if (!sequencer_get_last_command(r, &action)) {
- if (action == REPLAY_PICK) {
+ if (action == REPLAY_PICK && !state->cherry_pick_in_progress) {
state->cherry_pick_in_progress = 1;
oidcpy(&state->cherry_pick_head_oid, null_oid());
- } else {
+ } else if (action == REPLAY_REVERT && !state->revert_in_progress) {
state->revert_in_progress = 1;
oidcpy(&state->revert_head_oid, null_oid());
}