Answers for "how to set global config in git"

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
0

git config

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

global configuration git

git config --global user.name "pseudo"
git config --global user.email "[email protected]"
git config --global user.password "password"
Posted by: Guest on May-14-2021
0

git config --global user.name "Server"

cat .gitconfig
Posted by: Guest on October-22-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language