How to change github global core editor ?

Open your terminal, then which editor is easy for you (vim, emacs, nano) ?

1
2
3
4
git config --global core.editor "vim"  #or 
git config --global core.editor "vi"
git config --global core.editor "emacs"  #or
git config --global core.editor "nano"

That’ s all

Comments