-3

我无法镜像我的存储库。以下命令有效:

git clone --bare https://github.com/my_username/my-repo.git
cd my-repo

还有另一个我想要镜像的空存储库。该存储库由另一个人拥有,但我可以访问它,因为我可以在我的 GitHub 帐户中看到它。

当我执行以下命令时,出现错误:

git push --mirror https://github.com/their-username/their-repo

remote: Repository not found.
fatal: repository ‘https://github.com/their-username/their-repo/’ not found

存储库:

  1. https://github.com/my-username/my-repo(这是我的仓库,有我的用户名)
  2. https://github.com/their-username/their-repo(这是他们的仓库,有他们的用户名)

我正在尝试将 1 镜像到 2。我可以成功克隆两个存储库

4

2 回答 2

0

Git 内置了镜像功能

从你的回购

git push --mirror https://github.com/their-username/their-repo

请注意,这将完全覆盖他们的 repo,因此您应该确保他们对此表示同意。

于 2021-04-19T17:44:20.917 回答
-1

答案是:

我有只读访问权限,没有读写访问权限。我给我的组织发了电子邮件,他们改变了这个,它奏效了。

于 2021-04-19T18:26:11.633 回答