时间:2021-07-01 10:21:17 帮助过:61人阅读
$ 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