Answers for "git config file"

10

git list config

git config --list
# or
git config --global --list
Posted by: Guest on June-11-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
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
4

edit git config file

git config --global --edit
Posted by: Guest on June-02-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