使用 Mercurial 添加/删除复制的文件,TortoiseHg 可以做到,但是命令行变体是什么?

发布于 2024-10-03 12:21:57 字数 418 浏览 1 评论 0原文

Mercurial 命令addremove 检测已根据相似性比率重命名的文件。

TortoiseHg 还能够检测副本,即。已复制到磁盘上但未作为副本明确传达给 Mercurial 的文件。

addremove 命令似乎没有任何检测副本的选项,只有重命名。有谁知道执行此操作的等效命令行命令和/或选项是什么?

例如,如果我这样做:

hg init .
echo 111>test1.txt
hg commit -m "initial" --addremove
copy test1.txt test2.txt
??? what do I write here to get the equivalent of: hg cp test1.txt test2.txt

The Mercurial command addremove detects files that have been renamed according to a similarity ration.

TortoiseHg is also able to detect copies, ie. files that were copied on disk but not explicitly communicated to Mercurial as copies.

It doesn't appear that the addremove command have any options to detect copies, only renames. Does anyone know what the equivalent command line command and/or options would be to do this?

For instance, if I do this:

hg init .
echo 111>test1.txt
hg commit -m "initial" --addremove
copy test1.txt test2.txt
??? what do I write here to get the equivalent of: hg cp test1.txt test2.txt

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

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

发布评论

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

评论(1

極樂鬼 2024-10-10 12:21:57

我不知道有什么方法可以使用 CLI 来做到这一点。仅支持移动意味着您可以减少要与丢失或添加的文件进行比较的文件集。

我不知道Tortoise是如何做到的,但我猜它相当昂贵。

I don't know of any way to do it using the CLI. Only supporting moves means you can whittle down the set of files to be compared to those that are either missing or added.

I'm not sure how Tortoise does it, but I'd guess it's pretty expensive.

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