按照以下说明操作后,我能够在我的 GitHub 帐户中创建镜像。但在那之后如何从源存储库中获取更新。
https://help.github.com/en/articles/duplicating-a-repository#mirroring-a-repository
打开 Git Bash。
创建存储库的裸克隆。
$ git clone --bare https://github.com/exampleuser/old-repository.git 镜像推送到新仓库。
$ cd old-repository.git $ git push --mirror https://github.com/exampleuser/new-repository.git删除您在步骤 1 中创建的临时本地存储库。
$ cd .. $ rm -rf old-repository.git