Answers for "where is global config file for git"

1

where is global config file for git

git config --global --edit 
# It will open git config file and you can make necessary changes
Posted by: Guest on May-28-2021
0

global configuration git

git config --global user.name "pseudo"
git config --global user.email "[email protected]"
git config --global user.password "password"
Posted by: Guest on May-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language