Git 无法推送提交

Git 无法推送提交,git,github,branch,semantic-ui,Git,Github,Branch,Semantic Ui,我试图将最近的提交推送到github上的中央存储库,但我被拒绝访问自己的存储库。如何更改或覆盖设置 frameworks/Semantic-UI$ sudo git push Username for 'https://github.com': team@everest.software Password for 'https://team@everest.software@github.com': remote: Permission to Semantic-Org/Semantic-UI.g

我试图将最近的提交推送到github上的中央存储库,但我被拒绝访问自己的存储库。如何更改或覆盖设置

frameworks/Semantic-UI$ sudo git push
Username for 'https://github.com': team@everest.software
Password for 'https://team@everest.software@github.com':
remote: Permission to Semantic-Org/Semantic-UI.git denied to everest-software.
fatal: unable to access 'https://github.com/Semantic-Org/Semantic-UI.git/': The 
requested URL returned error: 403

GitHub存储库的As用户名不应是电子邮件地址,而应是实际的GitHub帐户用户名

'https://github.com“:
team@everest.software
aUSername

当一个人:


其次,该用户名应与您要推送到的存储库的所有者匹配:

Semantic-Org/Semantic-UI.git 
我假设您的GitHub用户名帐户不是语义组织,这意味着:

  • 您不是Semantic-UI.git存储库的所有者(可能也不是合作者)
  • 您不能直接推送到您不拥有的存储库
如果要返回到
语义UI.git
,首先需要fork该存储库

请参阅“”

@chody不要忘记阅读此问题(或其他问题)