美文网首页
git 清除账号密码缓存

git 清除账号密码缓存

作者: 逐影随行 | 来源:发表于2021-09-18 10:00 被阅读0次

配置用户名和邮箱:

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缓存中的用户名的密码

git credential-manager uninstall

相关文章

网友评论

      本文标题:git 清除账号密码缓存

      本文链接:https://www.haomeiwen.com/subject/bnmegltx.html