git View your username and password mailbox and modify it

Open the terminal
to view the user name: git config user.name

View password: git config user.password

Check email: git config user.email

View configuration information: $ git config --list

modify username

git config --global user.name "new username"

change Password

git config --global user.password "new password"

Modify email

git config --global user.email "new email"

Guess you like

Origin blog.csdn.net/weixin_45966674/article/details/131121033