有可能将git裸仓库克隆为新的裸仓库吗?例如:
然后在远程服务器中:
然后通过cron作业将repoReplica.git的更改发送到mainRepo.git,这样我就可以让2个团队工作,一个直接使用mainRepo.git,第二个使用repoReplica.git
有可能吗?怎么样?
答案 0 :(得分:0)
有可能,但我建议你的同步过程:
含义:
repo1
会将master
推送到repo2
master_fromrepo1
git push repo2 master:master_fromrepo1
repo2会将master
推送到repo1
master_fromrepo2
git push repo1 master:master_fromrepo2