上周,我的一个朋友克隆了她的Github存储库,并在我的机器上对其进行了一些工作。她使用以下bash命令更改了我计算机上的用户配置:
git config --global user.name "myFriendsUsername"
git config --global user.email "myFriendsEmail"
完成后,她使用相同的命令将用户配置更改回我的凭据,我使用
进行了验证。git config --global user.name
git config --global user.email
返回了我的凭据。但是,今天我克隆了一个自己的存储库,进行了一些更改并尝试将其推送到原始位置,但这给了我以下错误:
remote: Permission to myUsername/myRepo.git denied to myFriendsUsername.
fatal: unable to access
'https://github.com/myUserName/myRepo.git/': The requested URL returned error: 403
我可能会忽略任何设置吗?