Answers for "git config command"

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
3

git config list

git config --global --list
Posted by: Guest on November-23-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
1

what is my git config

git config --list
Posted by: Guest on March-19-2020
4

edit git config file

git config --global --edit
Posted by: Guest on June-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language