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?

esc, theni, type your commit message, then when doneesc,:wqthen entervieditor, if you're familiar with that)git rebase --continue, exiting with the keycodes you provided, I'm again on my branch. Then I had to pull the remote commits that weren't mine, and finally I could push my feature branch. I do have some notions of vim, but never used it myself, always bash. But I would never have come up with these keycodes. Can you post this as an answer?nanoequivalent too, I'm more used to that 🤣🤣)