javascript - 为什么hexo用git部署到github上每次都要输入用户名和密码
程序员文章站
2022-05-21 13:58:30
...
该做的我都做了,为什么?
$ git config --global user.name 'xxxxx'
$ git config --global user.email 'xxxxxx'
回复内容:
该做的我都做了,为什么?
$ git config --global user.name 'xxxxx'
$ git config --global user.email 'xxxxxx'
把你当前的本地仓库删了,重新 git clone
,记得使用 SSH
。
比如 git clone git@github.com:HmyBmny/hmybmny.github.io.git
,这样才能使用 SSH
。
git中用来配置账号授权信息主要是靠credential
配置项的helper
节点来控制。
你可以通过以下命令来配置保存账号密码
git config --global credential.helper store
也可以在用户目录下直接修改配置文件
[credential]
helper=store
上一篇: 自做的时钟的原码php_PHP教程
下一篇: android网络访问兼容