user2331760 Asked: 2022-03-10 22:09:56 +0800 CST2022-03-10 22:09:56 +0800 CST 2022-03-10 22:09:56 +0800 CST 如何使重复的存储库与 github 保持同步? 772 我在克隆中使用了 github 重复选项和 --bare 并上传到 github.com 中的另一个帐户 在此链接中使用 就像将项目移交给另一个团队的过程一样。 但是原始存储库中有最近的更改,如何在所有分支中同步这些更改。 clone git github 1 个回答 Voted Best Answer uday kiran 2022-03-10T22:24:50+08:002022-03-10T22:24:50+08:00 一种选择是克隆为裸存储库,并在有更改时从原始存储库中获取更改。 git clone --mirror https://primary_repo_url/primary_repo.git git fetch origin 然后,将另一个新的 repo 添加为另一个 remote,并在需要同步的更改时将其推送到该 repo。 cd primary_repo.git git remote add --mirror=fetch secondary https://secondary_repo_url/secondary_repo.git git push secondary --all 有关更多详细信息和其他选项,我点击了此链接
一种选择是克隆为裸存储库,并在有更改时从原始存储库中获取更改。
然后,将另一个新的 repo 添加为另一个 remote,并在需要同步的更改时将其推送到该 repo。
有关更多详细信息和其他选项,我点击了此链接