前言
最近在提交代码过程中,遇到一直需要输入账号和密码,记录一下这个过程中遇到的问题。
协议
首先需要了解到,你平时clone代码是有两个选项,一种是git协议,一种是ssh协议。
git协议
如果是使用git协议clone代码下来,你只需要配置一下ssh公钥就可以秒输入密码。
具体操作步骤如下:
打开Git Bash,输入一下命令,连续按三个回车即可:
ssh-keygen -t rsa -C "your_email@example.com"
ssh协议
如果你是ssh协议clone下来的话,一般网上介绍是配置一下这个命令,在输入一次密码后就可以解决问题。
命令如下:
git config –global credential.helper store
命令不生效
我也是按照这个命令设置,结果不生效。这时候你需要查看一下credential.helper store
是否生效。
git config --list
如果你查看到credential.helper=manager
这个参数,那就说明命令没有生效,需要先执行命令将manager参数去掉。
git config --system --unset credential.helper
## 或者
git config --global --unset credential.helper
然后再执行git config –global credential.helper store
命令即可。
总结
参考:https://zhuanlan.zhihu.com/p/339964630