Answers for "git config all users"

35

git config user

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

git config all users

$ git config --get-all user.name
or 
$ git config --list
Posted by: Guest on December-15-2020
3

git config list

git config --global --list
Posted by: Guest on November-23-2020
15

git config global username

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

git user config

$ git config --local user.name "John Doe"
$ git config --local user.email [email protected]
Posted by: Guest on November-20-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language