Mercurial hg mv 不会移动所有文件

发布于 2024-11-08 01:52:15 字数 244 浏览 0 评论 0原文

可能很简单,但我还没有通过通常的搜索查询挖掘出任何内容,所以我想我应该在这里问。基本上我正在尝试重新安排我的仓库;例如:

mkdir test
hg mv DirectoryOfStuff test/

Mercurial 移动了大部分内容,但它留下了一些目录和文件。到目前为止,我还没有看到任何它移动和不移动的模式。

我是否缺少明显的规则或命令?

谢谢!

Probably an easy one but I haven't dug up anything with the usual search queries so I thought I'd ask here. Basically I'm trying to rearrange my repo; for example:

mkdir test
hg mv DirectoryOfStuff test/

Mercurial moves most of the contents but it leaves some directories an files behind. So far I haven't seen any pattern to what it moves and what it doesn't.

Is there an obvious rule or command that I'm missing?

Thanks!

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

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

发布评论

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

评论(1

农村范ル 2024-11-15 01:52:15

hg mv 移动跟踪的文件,而不是忽略或未知的文件。

要移动所有内容并仍将跟踪文件记录为移动的文件,请使用常规(非 hg)移动命令,然后使用 hg addremove -s 100。 addremove 命令将您的文件操作改进为添加/删除/重命名/移动。

使用小于 100 来允许更改文件内容和内容名称。

hg mv moves tracked files, not ignored or unknown ones.

To move everything and still record tracked files as a moved, use a regular (non-hg) move command and then hg addremove -s 100. The addremove command retrofits your file operations as add/remove/rename/move.

Use less than 100 to allow changes in file content & names.

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