Maison > Article > développement back-end > javascript - 为什么hexo用git部署到github上每次都要输入用户名和密码
<code> $ git config --global user.name 'xxxxx' $ git config --global user.email 'xxxxxx' </code>
<code> $ git config --global user.name 'xxxxx' $ git config --global user.email 'xxxxxx' </code>
把你当前的本地仓库删了,重新 git clone
,记得使用 SSH
。
比如 git clone git@github.com:HmyBmny/hmybmny.github.io.git
,这样才能使用 SSH
。
git中用来配置账号授权信息主要是靠credential
配置项的helper
节点来控制。
你可以通过以下命令来配置保存账号密码
<code>git config --global credential.helper store</code>
也可以在用户目录下直接修改配置文件
<code>[credential] helper=store</code>