diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-01-18 00:11:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-01-18 00:11:05 +0100 |
commit | 7902b72794dbf2366b9e7d8cb7417a3751e0955f (patch) | |
tree | 604bd4d56060a2ca59c2f41d7544a873a3151029 /builtin | |
parent | Merge branch 'da/mergetool-xxdiff-hotkey' into maint (diff) | |
parent | Revert "sequencer: remove useless get_dir() function" (diff) | |
download | git-7902b72794dbf2366b9e7d8cb7417a3751e0955f.tar.xz git-7902b72794dbf2366b9e7d8cb7417a3751e0955f.zip |
Merge branch 'sb/sequencer-abort-safety' into maint
Unlike "git am --abort", "git cherry-pick --abort" moved HEAD back
to where cherry-pick started while picking multiple changes, when
the cherry-pick stopped to ask for help from the user, and the user
did "git reset --hard" to a different commit in order to re-attempt
the operation.
* sb/sequencer-abort-safety:
Revert "sequencer: remove useless get_dir() function"
sequencer: remove useless get_dir() function
sequencer: make sequencer abort safer
t3510: test that cherry-pick --abort does not unsafely change HEAD
am: change safe_to_abort()'s not rewinding error into a warning
am: fix filename in safe_to_abort() error message
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/am.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/am.c b/builtin/am.c index 6981f42ce9..826f18ba12 100644 --- a/builtin/am.c +++ b/builtin/am.c @@ -2124,7 +2124,7 @@ static int safe_to_abort(const struct am_state *state) if (read_state_file(&sb, state, "abort-safety", 1) > 0) { if (get_oid_hex(sb.buf, &abort_safety)) - die(_("could not parse %s"), am_path(state, "abort_safety")); + die(_("could not parse %s"), am_path(state, "abort-safety")); } else oidclr(&abort_safety); @@ -2134,7 +2134,7 @@ static int safe_to_abort(const struct am_state *state) if (!oidcmp(&head, &abort_safety)) return 1; - error(_("You seem to have moved HEAD since the last 'am' failure.\n" + warning(_("You seem to have moved HEAD since the last 'am' failure.\n" "Not rewinding to ORIG_HEAD")); return 0; |