to a changeset, if was already pushed to a public repo or pulled from, or
if it is only a local change ( draft ).
Theres an other state named secret, which can be used by extensiosn.
if in .hgrc
[mq]
secret=True
is configured, than MQ patches are considered secret:
ewer@solewer:~/entw/vsop$ hg log --template '{rev} {changeset} {date|isodate} {phase}\n{description}' -r qtip
2300 2012-02-02 14:14 +0100 secret
This prevents from pushing mq sets:
ewer@solewer:~/entw/vsop$ hg out
comparing with http://hg.hartter.com/vsop
searching for changes
no changes found (ignored 1 secret changesets)

1 comment:
thx for this clear and concise presentation!
Note that secret changesets are also not "pullable" and may be used outside Mq.
Post a Comment