hg remove all files listed in .hgignore

限于喜欢 提交于 2019-11-30 01:55:07
Martin Geisler

You can only run hg remove on files that are tracked. To remove tracked files that match the .hgignore patterns, run this command

$ hg forget "set:hgignore() and not ignored()"

This uses a fileset to select the right files.

If you want to remove files that are already ignored by Mercurial (not tracked), then see the purge extension. That can be used to cleanup a working copy so that it looks like a fresh checkout.

From hgrc help

A better example might be:

purge = !$HG status --no-status --unknown -0 | xargs -0 rm

which will make hg purge delete all unknown files in the repository in the same manner as the purge extension.

In order to delete ignored files instead of unknown you have ("hg help status") use --ignored | -i option instead of --unknown

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!