Git Configure Default Editor

[Solved] Git Configure Default Editor | Shell - Code Explorer | yomemimo.com
Question : git change default editor

Answered by : fancy-ferret-8n4wcre7ulro

git config --global core.editor vim

Source : | Last Update : Tue, 09 Feb 21

Question : git configure default editor

Answered by : ivo-cost

# 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 : | Last Update : Thu, 10 Sep 20

Question : how to set default editor in git

Answered by : nathan-no-sudo

git config --global core.editor nano

Source : | Last Update : Sat, 29 May 21

Question : configure editor for git

Answered by : alert-alligator-lmz6vwcpzbjm

$ git config --global core.editor emacs

Source : https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration | Last Update : Wed, 14 Apr 21

Answers related to git configure default editor

Code Explorer Popular Question For Shell