<body>
该做的我都做了,为什么?
<code> $ git config --global use<strong style="color:transparent">本&文来源gao@daima#com搞(%代@#码网@</strong><textarea>搞gaodaima代码</textarea>r.name 'xxxxx' $ git config --global user.email 'xxxxxx' </code>
回复内容:
<body>
该做的我都做了,为什么?
<code> $ git config --global user.name 'xxxxx' $ git config --global user.email 'xxxxxx' </code>
把你当前的本地仓库删了,重新 git clone
,记得使用 SSH
。
比如 git clone [email protected]:HmyBmny/hmybmny.github.io.git
,这样才能使用 SSH
。
git中用来配置账号授权信息主要是靠credential
配置项的helper
节点来控制。
你可以通过以下命令来配置保存账号密码
<code>git config --global credential.helper store</code>
也可以在用户目录下直接修改配置文件
<code>[credential]helper=store</code>