Git rebase -continue opens editor

After a failed reboot with a conflict, I was unable to continue rebase using the Git GUI client. While doing

git rebase --continue

on the command line (msysgit 1.7.4), he opened a text editor. Closing it, Git continued. How can I avoid opening the editor?

+3
source share
1 answer

If the error fails, you must manually fix the file, and then exec git add filenameto signal that everything is in order. At this point, git rebase --continuecontinue the procedure without bothering you.

To change the default git editor, use the problem: git config --global core.editor new_editor

, , , , , GIT_EDITOR . . git -var (1).

+2

All Articles