如何搭建git镜像环境?

发布于 2024-11-18 09:07:42 字数 292 浏览 11 评论 0原文

随着我们慢慢从 SVN 迁移到 GIT,我们正在考虑创建一个 git 服务器集群,以卸载通过 WAN 进行的克隆,并在出现问题时创建冗余或热备用。我们的主要要求之一是我们可以提交给任何 gitserver,后者将在层次结构中进一步复制它。

当我们同时在多达 3 个大陆进行开发时,我不太信任使用 rsync/crontab 的 git 克隆,因为我相信同时在多个服务器上提交可能会损坏存储库(或者给 git令人头疼的是如何合并更改)。此类部署的最佳实践是什么?有人有提示或指示吗?当我们迁移到 Git 时,Wandisco 的 SVN 集群并没有削减它。

As we are slowly moving from SVN to GIT we are looking into creating a cluster of git servers both to offload cloning over our wan, and to create redundancy or a hot standby in case of issues. One of our main demands is that we can commit to any of the gitserver, who would replicate it further up in the hierarchy.

As we develop as in many as 3 continents simultaneously i don't place a lot of trust in using rsync/crontab'ed git clones, as i believe commits on more than one server at the same time might corrupt the repositories (or give git a headache on how to merge the changes) . What is the best practices around such a deployment? Anyone with tips or pointers? Wandisco's SVN cluster does not cut it as we are migrating to Git.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美煞众生 2024-11-25 09:07:42

对于这样的数据传播,我建议使用 git bundle(这将包含标签和分支)因为:

  • 您可以轻松制作增量捆绑包(在 初始完整包
  • 传播包意味着复制一个 通过 wan 发送文件,
  • 您可以使用它们更新每个节点上的裸存储库,以充当本地“中央”存储库(从或推送到,因为您不能直接推送到捆绑包)

For such a propagation of data, I would recommend using git bundle (which would include tags and branches) because:

  • you can make incremental bundle easily (after an initial full bundle)
  • propagate a bundle means copying one file over the wan
  • you can use them to update bare repos at each of your node to serve as local "central" repo (to pull from or push to, since you can't push directly to a bundle)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文