我在安装Git时首先使用ID ID-A安装了Git。 我将ReadMe.md文件上传到Repo。
但现在我想使用ID-B ID代替ID-A。 所以我会告诉你我做了什么。
git config --global user.name "ID-B"
git config --global user.email ID-B@domain.com
rm -rf .git
git config user.name # ID-B
git config user.email # ID-B@domain.com
git init
git add test.rtf
git commit -m "test commit"
git remote add origin https://github.com/ID-B/test.git
git push -u origin master
# Remote: Permission to ID-B / test.git denied to ID-A.
# Fatal: unable to access 'https://github.com/ID-B/test.git/':
# The requested URL returned error: 403
我想我已将ID从ID-A更改为ID-B,但它并未在某处更改,因此当我尝试连接ID-B时,它似乎失败了。
所以我尝试使用以下命令重新安装命令。
rm -rf / usr / local / git
我也运行该命令,但只有权限被拒绝。 我怎么能改变这个?
谢谢