配置用户名和邮箱:
git config --global user.name “username”
git config --global user.email “useremail@qq.com”
清除配置中纪录的用户名和密码,下次提交代码时会让重新输入账号密码:
git config --system --unset credential.helper
查看git配置信息
git config --list
执行命令之后,再次pull或push时会缓存输入的用户名和密码:
git config --global credential.helper store
清除git缓存中的用户名的密码文章来源:https://www.toymoban.com/news/detail-515429.html
git credential-manager uninstall文章来源地址https://www.toymoban.com/news/detail-515429.html
到了这里,关于git 清除账号密码缓存的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!