> 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.

You'll want an hgignore list, something like

syntax=regexp
\#.+#
.+\.pyc
proto/.+
.+.o
/debug32/
/debug64/
webrev/
\.make\.state

...and referenced in your .hgrc.

--Mark

Reply via email to