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就不需要密码啦!

    原文作者:Basu
    原文地址: https://segmentfault.com/a/1190000012040520
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞