We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
imerge abort
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to summarize how to abort imerge, because there is no such command yet.
imerge
TL;DR
git merge --abort git switch $(git rev-parse --abbrev-ref HEAD | cut -d/ -f2) imerge remove
First command aborts merge. Second finds the original branch name and switches to it. Third cleans up imerge branch.
Demonstration how the branch detection works.
✗ git rev-parse --abbrev-ref HEAD imerge/tests-root-stub ✗ git rev-parse --abbrev-ref HEAD | cut -d/ -f2 tests-root-stub
Should be possible to add it to Python code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to summarize how to abort
imerge
, because there is no such command yet.TL;DR
git merge --abort git switch $(git rev-parse --abbrev-ref HEAD | cut -d/ -f2) imerge remove
First command aborts merge.
Second finds the original branch name and switches to it.
Third cleans up
imerge
branch.Demonstration how the branch detection works.
Should be possible to add it to Python code.
The text was updated successfully, but these errors were encountered: