如何修复Git错误(未找到存储库)?

时间:2015-03-04 23:22:31

标签: git github bitbucket

我从github切换到了bitbucket。我没有做理性的事情而只是导入文件,而是在github上删除了它们。

以下是我采取的步骤,但它们无效。

$ git remote add origin git@bitbucket.org:RallyWithGalli/personalcontrolcenter.git

fatal: remote origin already exists.

由于它已经存在,我接着进入下一步。

$ git push -u origin --all

ERROR: Repository not found. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.

我不知道如何修复此错误。我很乐意能够删除git中的所有内容,并且如果可以轻松完成则从头开始。

1 个答案:

答案 0 :(得分:2)

$ git remote add origin git@bitbucket.org:RallyWithGalli/personalcontrolcenter.git

fatal: remote origin already exists.

Git告诉你有一个远程名为origin 已经存在,但它不一定有相同的URL。在您的情况下,它仍然指向您的Github存储库。自从您删除它后,当您尝试推送时,请获取repository not found

我建议的程序是重命名而不是删除Github远程(即原点)。这将保留Github存储库的内容,以防万一移动到Bitbucket不顺利。然后让Bitbucket成为你的起源并推动。

  • git remote rename origin github
  • git remote add origin git@bitbucket.org:RallyWithGalli/ personalcontrolcenter.git
  • git push origin --all