Answers for "git set editor"

5

set git editor

$ git config --global core.editor vim
Posted by: Guest on June-08-2020
15

git config

git config --global user.name "John Doe"
git config --global user.email [email protected]
Posted by: Guest on October-24-2020
1

git commit --amend choose editor

git config --global core.editor "/bin/nano"
Posted by: Guest on September-02-2020
1

git configure default editor

# 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
Posted by: Guest on September-03-2020
0

git set editor

git config --global core.editor nvim
Posted by: Guest on July-16-2021
0

configure editor for git

$ git config --global core.editor emacs
Posted by: Guest on April-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language