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 操作免账号/密码配置方式的主要内容,如果未能解决你的问题,请参考以下文章