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、更改全局的用户名:文章来源:https://www.toymoban.com/news/detail-762269.html
git config --global user.name "username"
6、更改全局的邮箱:文章来源地址https://www.toymoban.com/news/detail-762269.html
git config --global user.email "eamil@qq.com"
到了这里,关于vsCode git 修改、清空、重置、保存账号名密码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!