git config --system --unset credential.helper //强制密码交互,这种就是完全不保存密码,每次做操作都要输入
git config --global credential.helper store //密码永久保存
git config –global credential.helper cache //密码临时保存,默认是一个小时
git config credential.helper 'cache –timeout=3600' //密码指定保存时间
针对已经保存了的密码
对于windows
image.png
可以在该路径下的windows凭据里查找,然后删除
针对mac
可以在 钥匙串访问->秘密里找到进行删除
网友评论