美文网首页
git如何记住账号密码

git如何记住账号密码

作者: 网络小乙 | 来源:发表于2020-12-03 09:39 被阅读0次
    HTTPS记住密码
    • 永久记住密码
      git config --global credential.helper store
      
      上面的命令会在用户主目录的 .gitconfig文件中生成如下配置(也可以直接编辑配置文件添加)
      [credential]
          helper = store
      
      如果没用使用 --global 选项,则会在当前项目的 .git/config 文件中
    • 临时记住密码
      #默认记住密码15分钟
      git config –global credential.helper cache
      #以下命令记住密码1小时
      git config credential.helper 'cache –timeout=3600'
      

    相关文章

      网友评论

          本文标题:git如何记住账号密码

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