git在用https进行push时候免输账密的方法

Posted Basu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git在用https进行push时候免输账密的方法相关的知识,希望对你有一定的参考价值。

先新建一个文件

$ touch ~/.git-credentials
$ vim ~/.git-credentials

进去添加内容(github为github.com,码云为gitee.com)

https://{username}:{passwd}@gitee.com

然后再添加git配置

$ git config --global credential.helper store

可以查看~/.gitconfig文件的变化

[credential]
helper = store

此时再push就不需要密码啦!

以上是关于git在用https进行push时候免输账密的方法的主要内容,如果未能解决你的问题,请参考以下文章

GitHub防黑客新措施:弃用账密验证Git操作,改用token或SSH密钥,今晚0点执行

忽然发现GitHub用不了了,原来git的账密验证已经弃用,改用 token 或 SSH 密钥

windows上git push和pull时每次都需要输入本地密码,怎么去掉,linux上不用

[已解决] windows 下 git 免输密码

git回滚线上代码

git push 免密码