<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>