'finish git rebase operation after conflict
For my job I need to do a git rebase of my feature branch onto the development branch.
These are my commands thus far to prepare the rebase:
git checkout feature-branch
git rebase development
# resolve conflicts in Visual Studio
git rebase --continue
After this, I'm getting the following in the cmd:
Now it's just as if I'm typing a novel in Notepad. Hitting enter, ctrl + C, ... doesn't do anything.
I've already read other questions like this one but this doesn't offer me a clue of how to complete the rebase / exit the shell.
So how do I finish this rebase operation? What buttons do I need to press?
Solution 1:[1]
I don't have enough rep to post a comment, but as a side note it's possible to configure Git to use a different editor, for example
git config --global core.editor "code --wait" would change the default to be VS Code
more information on this answer https://stackoverflow.com/a/36644561/18039381
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Matt |

