Git 通过一个命令从多个存储库中拉取

发布于 2024-08-11 08:43:48 字数 95 浏览 6 评论 0原文

我想让四台机器上的 Git 存储库保持同步,并且它们都是私有存储库。是否可以设置一个单独的 Git 存储库,同时从其他三台机器中提取数据,并尝试将所有更改合并到本地的单个分支?

I'd like to keep Git repositories on four machines synchronized, and all of them are private repos. Is it possible to set up a single Git repository to pull from the other three machines at the same time, with all the changes attempting to merge with a single branch locally?

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

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

发布评论

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

评论(1

这个俗人 2024-08-18 08:43:48
git remote update

将从您所有的遥控器中拉出。合并不会自动进行。您可以尝试

git merge -s octopus r1/master r2/master r3/master r4/master

进行五路章鱼合并,但这似乎并不是您真正想要的(我当然不会想要那样)。

git remote update

will pull from all of your remotes. The merge won't be automatic. You could try

git merge -s octopus r1/master r2/master r3/master r4/master

to get a five-way octopus merge, but it doesn't seem like that's what you'd really want (I certainly wouldn't want that).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文