Linux git 操作免账号/密码配置方式

Posted 张志翔ۤ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux git 操作免账号/密码配置方式相关的知识,希望对你有一定的参考价值。

        Git 免账号/密码配置方式: 

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

        按“i”然后输入:https://{username}:{password}@github.com

        比如 https://aoeddklj:1233ds@github.com

$ git config --global credential.helper store

        可以看到~/.gitconfig文件,会多了一项:

[credential]
helper = store

        此时可以不输入账号/密码完成操作。

以上是关于Linux git 操作免账号/密码配置方式的主要内容,如果未能解决你的问题,请参考以下文章

git http拉取代码免账号密码

linux git push pull免账号密码

Linux和 Mac下git pull/push 免输入密码和账号

Linux之间配置SSH互信(SSH免密码登录)

Linux之间配置SSH互信(SSH免密码登录)

【GIT】如何让git小乌龟工具记住Git账号密码 免多次登录