复制 .hg 文件夹和使用克隆有什么区别?

发布于 2024-10-20 17:55:55 字数 84 浏览 2 评论 0原文

假设我需要创建可以从中央存储库推送和拉取的 x 存储库。与将 .hg 文件夹从中央存储库复制到空文件夹 x 次相比,克隆所有这些存储库之间是否有实际区别?

Say I need to create x repositories that can push and pull from a central repository. Is there a practical difference between cloning all those repositories compared to copying the .hg folder x times from the central repository to empty folders?

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

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

发布评论

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

评论(3

蓝海 2024-10-27 17:55:55

我能想到的一个区别是复制不是原子操作:
您无法确定您正在复制的存储库没有被修改。


编辑:实际上 hg clone 手册页提到:

在某些情况下,您可以使用完整的硬链接来克隆存储库和工作目录

$ cp -al REPO REPOCLONE

这是最快的克隆方法,但并不总是安全的。

  • 该操作不是原子操作(您可以确保在操作过程中不修改 REPO
  • 并且您必须确保您的编辑器断开硬链接(Emacs 和大多数 Linux 内核工具都会这样做)。
  • 此外,这与将元数据放置在 .hg 目录下的某些扩展(例如 mq)不兼容。

One difference I can think of is that a copy isn't an atomic operation:
you can't be certain the repo you are copying isn't being modified.


Edit: the hg clone man page actually mentions:

In some cases, you can clone repositories and the working directory using full hardlinks with

$ cp -al REPO REPOCLONE

This is the fastest way to clone, but it is not always safe.

  • The operation is not atomic (making sure REPO is not modified during the operation is up to you)
  • and you have to make sure your editor breaks hardlinks (Emacs and most Linux Kernel tools do so).
  • Also, this is not compatible with certain extensions that place their metadata under the .hg directory, such as mq.
堇色安年 2024-10-27 17:55:55

另一个细微差别 - 如果执行复制,原始存储库和新存储库将具有相同的父存储库。通过克隆,新存储库的父级将是原始存储库。

即在 .hg/hgrc 文件的 [paths] 部分中。

原始存储库 (/repo/hg/original)

[paths]
default = /repo/hg/parent

复制存储库

[paths]
default = /repo/hg/parent

克隆存储库

[paths]
default = /repo/hg/original

Another minor difference - if you perform a copy both the original and new repository will have the same parent repository. With a clone the new repository's parent will be the original.

i.e. in the [paths] section of your .hg/hgrc file.

Original Repository (/repo/hg/original)

[paths]
default = /repo/hg/parent

Copied Repository

[paths]
default = /repo/hg/parent

Cloned Repository

[paths]
default = /repo/hg/original
[旋木] 2024-10-27 17:55:55

是的,有一点不同。如果两个存储库位于同一文件系统上,克隆将尝试创建硬链接。 (不幸的是,这在 Windows 上不起作用)

Yes, there is one difference. Clone will attempt to create a hard link if both repository are on the same filesystem. (Unfortunately, this doesn't work on windows)

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