vsCode git 修改、清空、重置、保存账号名密码

1、保存账号名密码,之后拉取代码都不用重新输入:

git config --global credential.helper store

2、查看git用户名:

git config user.name

3、清空所有的用户名和密码:

git config --system --unset credential.helper

4、清楚缓存的用户名和密码:

git credential-manager uninstall

5、更改全局的用户名:

git config --global user.name "username"

6、更改全局的邮箱:

git config --global user.email "[email protected]"

你可能感兴趣的:(Git,vscode,git)