Set which editor git should use.
This is the program that will open during a commit
with no -m
flag, a merge, a rebase, etc...
Select from any installed editor. Examples:
- emacs:
emacs
- vi:
vi
orvim
- atom:
atom --wait
- sublime:
subl -n -w
- vscode:
code --wait
Run:
$ $ git config --global core.editor <YOUR_EDITOR>
@mjlyons you're right thanks