美文网首页
Git密码管理

Git密码管理

作者: 最怕认真 | 来源:发表于2020-04-08 15:41 被阅读0次
    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
    可以在 钥匙串访问->秘密里找到进行删除

    相关文章

      网友评论

          本文标题:Git密码管理

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