On Wed, Jul 16, 2008 at 05:58:39PM -0500, Will Fiveash wrote: > So hg status in a repository where nightly has run is displaying a lot > output like: > > ? usr/src/uts/intel/zfs/debug64/txg.o > ? usr/src/uts/intel/zfs/debug64/uberblock.o > ? usr/src/uts/intel/zfs/debug64/unique.o > . > . > . > > The teamware to hg guides I've seen say that hg status is similar to > putback -n but they do not indicate how the developer is to deal with > the ? status lines.
hg stat -mard is the usual invocation to ignore unknown files. Or you can have a .hgignore file in the workspace (or one set by the ignore key in the [ui] section of your .hgrc) which sets up ignore patterns. I'd say "hg outgoing" is more like putback -n, except that you have to have your commit complete. Danek