我正在尝试从git-bash创建一个新的存储库。 我从GitHub界面创建了一个新的代表
,然后从bash运行以下命令
echo "# hello-world" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/leoUninova/hello-world.git
git push -u origin master
并显示错误“权限被拒绝”:
~/tryal (master)
$ git push -u origin master
remote: Permission to leoUninova/hello-world.git denied to lqpwoeiruty.
fatal: unable to access 'https://github.com/leoUninova/hello-world.git/': The requested URL returned error: 403
我已经看到了类似问题的答案:getting error after run git push -u origin master command,但是它暗示了一个吸引力,我不认为这是解决方案,因为我只是从GitHub复制了代码。
答案 0 :(得分:0)
尝试以下命令:
git remote set-url origin git@github.com:leoUninova/hello-world.git
,然后尝试您的git push -u origin master
。
如果这不能解决您的问题,请尝试删除存储的git凭据。
在Windows上,转到Control Panel > User Accounts > Credential Manager > Windows Credentials > Generic Credentials
并拔下Github
键。