3

我将存储库的所有权转让给了我拥有所有权的组织。但是,现在我无法推送到存储库。我收到此错误:

$ git push origin master
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly

为了能够再次推送,我需要采取哪些步骤。

4

2 回答 2

13

您是否调整了遥控器以反映回购现在的位置?

git remote -v

将显示所有遥控器及其 URL,并且

git remote set-url origin git@github.com:[organisation]/[repo].git

如果它们已过时,是更新它的语法。

于 2012-06-09T18:17:32.080 回答
2

根据此页面,管理员似乎不会自动获得对组织存储库的访问权限。尝试将 repo 添加到您所属的团队中。

于 2012-06-09T04:54:46.727 回答