Answers for "git edit global config"

40

git config global

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
Posted by: Guest on February-08-2020
5

set git editor

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

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 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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language