如何从源代码更新到Github镜像存储库?

时间:2019-03-14 11:35:04

标签: git github git-clone git-fetch git-mirror

按照以下说明进行操作后,我能够在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

1 个答案:

答案 0 :(得分:0)

重复相同的裸克隆和镜像推送将从源代码更新存储库。

每次想要更新镜像时,都可以采用相同的步骤: https://help.github.com/en/articles/duplicating-a-repository#mirroring-a-repository