On Tue, 5 Jun 2012 14:45:03 -0700 (PDT)
SKempf <[email protected]> wrote:
> Other than pulling Leo, we don't use bzr, so this might be a bzr
> question.
Just poked around at the bzr tags command, I think it should do what
you want but it doesn't seem very polished.
bzr tags --sort=time
lists tags sorted by most recent last, except that tags for revisions
that no longer exist are show at the end. Currently it shows:
leo-4-9-final 4410
before removing g.new_config 5006
ready to remove g.new_config switch 5008
leo-4-10-b1 5183
leo-4-10-final 5216
leo-4-6-1-final ?
leo-4-6-final ?
leo-4-6-3-final ?
But you can't do
bzr tags --sort=time lp:leo-editor
it only works on local branches.
So you'd need to
bzr branch lp:leo-editor trunk # one time only
cd trunk
bzr pull
bzr tags --sort=time
to see the latest tags. I.e. pull and then tags to get the latest as list the
latest tags. Then when you see there is a tag you want,
bzr branch lp:leo-editor -r leo-4-10-final current_leo
Not sure if that completely answers your question.
Cheers -Terry
--
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/leo-editor?hl=en.