版权声明:转载请注明原文链接,非法转载者将追究其法律责任。 https://blog.csdn.net/youanyyou/article/details/78992990
每次提交代码都要输入用户名密码,十分麻烦,教大家怎么让Git记住密码。
Https记住密码
永久记住密码
git config --global credential.helper store1
会在用户主目录的.gitconfig文件中生成下面的配置。
[credential]
helper = store12
如果没有--global,则在当前项目下的.git/config文件中添加。
当然,你也可以直接复制上面生成的配置到配置文件中。
临时记住密码
默认记住15分钟:
git config –global credential.helper cache1
下面是自定义配置记住1小时:
git config credential.helper ‘cache –timeout=3600’1
SSH记住密码
可以从一个已有的SSH KEY来记住密码,会在用户主目录下的known_hosts生成配置。
把ssh key添加到ssh-agent
$ eval $(ssh-agent -s)
$ ssh-add ~/.ssh/id_rsa12
如添加过程:
$ eval $(ssh-agent -s)
Agent pid 54188
$ ssh-add ~/.ssh/id_rsa
Enter passphrase for /c/Users/Administrator/.ssh/id_rsa:
Identity added: /c/Users/Administrator/.ssh/id_rsa (/c/Users/Administrator/.ssh/id_rsa)
1234567
这个对当前会话有效,关闭窗口或者重启电脑又要重新设置
---------------------
来源:CSDN
原文:https://blog.csdn.net/youanyyou/article/details/78992990
版权声明:本文为博主原创文章,转载请附上博文链接!