Answers for "git global config user.name"

100

git config username

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

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
1

git Config User with Cli

$ git config --global user.name ”yourgitusername”
$ git config --global user.email ”[email protected]"
Posted by: Guest on May-16-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language