Answers for "what is my git config"

15

git config

git config --global user.name "John Doe"
git config --global user.email [email protected]
Posted by: Guest on October-24-2020
0

what is my git config

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

git config

Open the command line.
Set your username: git config --global user.name "FIRST_NAME LAST_NAME"
Set your email address: git config --global user.email "[email protected]"
Posted by: Guest on February-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language