Differences between revisions 9 and 14 (spanning 5 versions)
Revision 9 as of 2007-10-16 19:30:00
Size: 859
Editor: pentium4
Comment:
Revision 14 as of 2014-03-18 16:45:50
Size: 916
Comment: remove hgext since it's not necessary
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
This extension purges all files an directories not being tracked by Mercurial in the current repository. This extension purges all files and directories not being tracked by Mercurial in the current repository.
Line 9: Line 9:
It'll remove unknown and ignored files, as well as empty directories. It'll remove unknown files and empty directories by default. With the {{{--all}}} option, it will also remove ignored files.
Line 19: Line 19:
hgext.purge= purge =
Line 21: Line 21:
#purge=/path/to/purge.py #purge =/path/to/purge.py
Line 33: Line 33:
Line 35: Line 34:
CategoryExtension CategoryBundledExtension

Purge extension

This extension is currently being distributed along with Mercurial.

Author: Marco Barisione

Overview

This extension purges all files and 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]
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


CategoryBundledExtension

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