Answers for "configuring git"

40

git config

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
Posted by: Guest on February-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

configure git

//add username
git config --global user.name "your_username"

//add email
git config --global user.email "[email protected]"

//check configuration
git config --global --list
Posted by: Guest on July-10-2021

Code answers related to "configuring git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language