Answers for "edit git config file"

10

git list config

git config --list
# or
git config --global --list
Posted by: Guest on June-11-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
0

git config

$ git config --list --show-origin
Posted by: Guest on March-02-2020
3

edit git config file

git config --global --edit
Posted by: Guest on June-02-2021
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
2

git config

Open the command line.
Set your username: git config --global user.name "FIRST_NAME LAST_NAME"
Set your email address: git config --global user.email "[email protected]"
Posted by: Guest on February-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language