我无法镜像我的存储库。以下命令有效:
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
存储库:
- https://github.com/my-username/my-repo(这是我的仓库,有我的用户名)
- https://github.com/their-username/their-repo(这是他们的仓库,有他们的用户名)
我正在尝试将 1 镜像到 2。我可以成功克隆两个存储库