git configure default editor

C++
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]# Set Emacs as the default editor
$ git config --global core.editor emacs   
# Set Visual Studio Code as the default editor
$ git config --global core.editor code
Source

Also in C++: