git view the git configuration on the computer

1. View the configuration

git config --list

2. View a configuration

git config user.name

3. Set user name and email address

git config --global user.name "user name"
git config --global user.email mailbox

Guess you like

Origin blog.csdn.net/yuan_jlj/article/details/111563647