Answers for "how to configure git"

14

add git user and email

git config --global user.email "[email protected]"
git config --global user.name "My Name"
Posted by: Guest on May-13-2020
40

git config

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

set username git

git config --global user.name "My Name"
Posted by: Guest on March-21-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
0

git config

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language