Differences between revisions 10 and 11
Revision 10 as of 2008-06-02 23:25:01
Size: 914
Editor: DerekSlager
Comment: Correcting description which implied that ignored files are always removed.
Revision 11 as of 2009-05-19 19:30:59
Size: 914
Editor: localhost
Comment: converted to 1.6 markup
No differences found!

Purge extension

This extension is currently being distributed along with Mercurial.

Author: Marco Barisione

Overview

This extension purges all files an directories not being tracked by Mercurial in the current repository.

It'll remove unknown files and empty directories by default. With the --all option, it will also remove ignored files.

It keeps added files and (unmodified or modified) tracked files.

Configuration

Just add a new entry in the extensions section of the mercurial configuration file (hgrc):

[extensions]
hgext.purge=
#or, if purge.py not in the hgext dir:
#purge=/path/to/purge.py

Usage

To purge the repository contents:

hg purge

To list the files that would be removed by running the previous command use it with the --print option:

hg purge --print


CategoryExtension

PurgeExtension (last edited 2014-03-18 16:45:50 by PhilipJagielski)