On Wed, 2008-08-20 at 15:34 -0700, David Bustos wrote:
> Aside: Speaking of which, I've been wondering if we should file
> an RFE with Mercurial for an option which pulls not the
> changeset for a tag, but the changeset which *defines* the tag.
> Like
>
> hg pull -R onnv_96
>
> Except, of course, that -R is already used. Maybe some sort of
> defined:onnv_96 syntax could work instead.
Note that there are also "local" tags which are kept in .hg/localtags
and are not under change control (and thus don't involve changesets).
So maybe the RFE should be to create a local tag rather than a
revision-controlled tag...
For instance:
hg pull --tag -r onnv_96
would pull down the changesets up to and including the one tagged
"onnv_96" in the parent, and then create a local tag in the child
corresponding to that changeset.
- Bill