git如何记住账号密码

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如何记住账号密码)