删除了 Mercurial 版本控制的一些文件,如何提交这些删除?

发布于 2024-10-30 13:41:10 字数 135 浏览 1 评论 0原文

我删除了本地文件系统上的一些文件,这些文件我不再使用,只是垃圾。不幸的是,它们是由版本控制(Mercurial)跟踪的。现在我看到一个大红色的“!”说由于丢失文件而不同步。我如何告诉 Mercurial 可以删除这些文件,而无需恢复所有文件并单独选择删除?

I deleted a few files on my local filesystem which I am not using anymore and are just junk. Unfortunately they are tracked by version control (Mercurial). Now I see a large red '!' saying it is out of sync because of the missing files. How can I tell Mercurial that it's OK to remove those files without reverting all of them and selecting delete on them individually?

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

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

发布评论

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

评论(1

奢欲 2024-11-06 13:41:10

要么告诉它忘记这些文件:

hg forget XYZ
hg commit ...

或者使用 addremove 命令,或者用于提交的 addremove 选项:

hg addremove
Hg commit ...

或者

hg commit --addremove ...

使用帮助来查找有关这些命令的更多信息:

hg help forget
hg help commit

Either tell it to forget those files:

hg forget XYZ
hg commit ...

Or use the addremove command, or addremove option for commit:

hg addremove
Hg commit ...

Or

hg commit --addremove ...

Use the help to find more info on these commands:

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