Git推送导致找不到存储库

Git推送导致找不到存储库,git,github,git-push,Git,Github,Git Push,我将repo克隆到本地驱动器上,对文件进行了一些更改,并对这些更改执行了git add+git commit。当我推它的时候,我会得到这些错误 git push origin master remote: Repository not found. fatal: repository 'https://github.com/*******/*****.git/' not found 我是Git的新手,所以我不太确定这里发生了什么。我可以访问回购协议,所以这不应该是隐私问题。我可以对其他回购协议

我将repo克隆到本地驱动器上,对文件进行了一些更改,并对这些更改执行了git add+git commit。当我推它的时候,我会得到这些错误

git push origin master
remote: Repository not found.
fatal: repository 'https://github.com/*******/*****.git/' not found

我是Git的新手,所以我不太确定这里发生了什么。我可以访问回购协议,所以这不应该是隐私问题。我可以对其他回购协议进行更改,并且可以毫无问题地推送它们,因此我的Git设置正确

请遵循以下流程:

  • git克隆repo_名称
  • cd回购名称
  • 在文件中做一些更改
  • git添加/
  • 将状态检查为git状态
  • git提交-m“提交消息”
  • git推送

  • 我是个白痴。我忘了从最初的回购协议中支付款项。我试图将我的更改推到原始回购协议上,这显然不起作用