(don't merge) Add --abort/--continue option to cherry_picker.py#65
Closed
Mariatta wants to merge 2 commits into
Closed
(don't merge) Add --abort/--continue option to cherry_picker.py#65Mariatta wants to merge 2 commits into
Mariatta wants to merge 2 commits into
Conversation
Member
|
I meant something different. I want the behavior similar to |
Member
Author
|
Ok I think this is what you wanted:
From here user has 2 options: option 1:
option 2:
🤔 Sounds right? |
Member
|
Yes, it is what I meant. Thank you for explaining it. |
--abort: Do `git cherry-pick --abort` Clean up branch --continue Do `git commit -am "resolved" --allow-empty` Clean up branch Closes python#45
Mariatta
force-pushed
the
abort_continue_options
branch
from
March 31, 2017 03:47
2b1cab0 to
fd1fbac
Compare
Member
Author
|
@serhiy-storchaka I implemented the behavior as discussed above. |
This was referenced Mar 31, 2017
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
--abortDo
git cherry-pick --abortClean up branch
--continueDo
git commit -am "resolved" --allow-emptyClean up branch
demo: https://asciinema.org/a/dfalzy45oq8b3c6dvakwfs6la
Closes #45