“子路径”究竟是如何实现的?在水银(汞)工作?

发布于 2024-10-28 08:16:02 字数 228 浏览 0 评论 0原文

我正在阅读 Mercurial 中的 子路径,但仍然无法理解以下内容: if subpaths file没有版本控制,我应该如何至少拥有一个“主要”来源?我是否应该在我的存储库中将子路径文件与 .hgignore 等一起版本化,然后将其复制到我进行克隆的 .hg 文件夹中?

I'm reading about subpaths in mercurial, and still can't understand the following: if subpaths file isn't versioned, how am I supposed to have at least a "primary" source for this? Should I version a subpaths file inside my repo along with .hgignore and such, and just copy it to the .hg folder where I do a clone?

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

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

发布评论

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

评论(1

听风吹 2024-11-04 08:16:02

我认为该网页确实非常清楚 - 仔细阅读它肯定会回答您的具体问题:

问。如果子路径文件没有版本控制,我应该如何至少拥有一个“主要”源?

A.子路径文件中的条目通过 PushkeyConcept 传播:子路径文件在存储库的克隆中复制,并在每次从存储库中拉取时刷新。本地子路径文件将被从您提取的存储库中获取的条目完全覆盖。

因此,您不需要将其添加到存储库,但如果客户端和服务器都启用了扩展,则该文件将在克隆/推送时创建/覆盖。

问。我是否应该在我的存储库中将子路径文件与 .hgignore 等一起版本化,然后将其复制到我进行克隆的 .hg 文件夹中?

A.这是一个新文件,位于存储库的 .hg 目录中。它不受版本控制。

所以,不。

I think that web page is really quite clear -- it certainly answers your specific questions when read carefully:

Q. if subpaths file isn't versioned, how am I supposed to have at least a "primary" source for this?

A. The entries in the subpaths file are propagated via the PushkeyConcept: the subpaths file is reproduced in clones of a repository and refreshed with every pull from the repository. The local subpaths file is completely overwritten with the entries obtained from the repository you pull from.

So you don't need to add it to the repository, but if both the client and the server have enabled the extension then the file will be created/overwritten on clone/push.

Q. Should I version a subpaths file inside my repo along with .hgignore and such, and just copy it to the .hg folder where I do a clone?

A. This is a new file that resides in the .hg directory of a repository. It is not version controlled.

So, no.

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