In git, you can use the config command to view the git password. This command is used to configure git. When the parameter is set to "user.password", you can view the git password. The syntax is " git config user.password".
The operating environment of this article: Windows 10 system, Git version 2.30.0, Dell G3 computer.
How to check the password of git
View user name: git config user.name
View password: git config user.password
View email: git config user.email
View configuration information: $ git config --list
Modify user name
git config --global user.name "xxxx(new username)"
Change password
git config --global user.password "xxxx(new password)"
Modify email
git config --global user.email "xxxx@xxx.com (new email)"
Modify error report:
Cause: Too many user names
Solution:
$ git config --global --replace-all user.name "You The name of git"
$ git config --global --replace-all uesr.email "Your git email address"
Recommended learning: 《GitTutorial》
The above is the detailed content of How to check what the git password is. For more information, please follow other related articles on the PHP Chinese website!