<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Gerry Reno wrote:
<blockquote cite="mid49987FBF.4080308@verizon.net" type="cite">
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
Marius Kruger wrote:
<blockquote
cite="mid418c22640902151234x16e6f38dp6c754bfe36f62ee@mail.gmail.com"
type="cite">
<div class="gmail_quote">2009/2/15 Gerry Reno <span dir="ltr"><<a
href="mailto:greno@verizon.net">greno@verizon.net</a>></span><br>
<blockquote class="gmail_quote"
style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I
have not used bzr very long and I'm having trouble figuring out how to<br>
clone from a project, later pull to stay current, locate a specific<br>
revision that is tagged, revert to this tagged revision, then pull my<br>
copy current again with the project.<br>
<br>
bzr clone <a class="moz-txt-link-freetext" href="http://">http://</a>.....
# project<br>
<time goes by><br>
bzr pull # want to stay current<br>
bzr revno<br>
1727<br>
bzr tags<br>
5.0.0-2 1715<br>
5.0.0-3 1725<br>
bzr revert -r tag:5.0.0-3 # want to work with this tagged version<br>
M bin/release.py<br>
M setup.py<br>
bzr diff -r 1725 setup.py<br>
# no diff, good<br>
# DO STUFF WITH revno 1725<br>
bzr pull --overwrite # here is where I thought this would make all
files current again with project</blockquote>
<div><br>
so at this point you expect your local branch to be at revno 1727?<br>
</div>
</div>
</blockquote>
<br>
Yes, but when I do this 'bzr pull' here it says "No revisions to
pull." And the files are the files of revno 1725.<br>
But 'bzr revno' reports 1727. How do I get the files back to revno
1727? It was suggested that maybe 'bzr revert --all' might work. But
I'm using bzr 1.3.1 and I don't have that --all option.<br>
</blockquote>
<br>
bzr revert # no options, this seems to pull the files back to revno
1727<br>
<br>
<br>
<blockquote cite="mid49987FBF.4080308@verizon.net" type="cite"><br>
<br>
<br>
<br>
<blockquote
cite="mid418c22640902151234x16e6f38dp6c754bfe36f62ee@mail.gmail.com"
type="cite">
<div class="gmail_quote">
<div>the pull command should tell you which rev you arrived at, or
you can use `bzr revno` or `bzr log`<br>
afterwards to check this.<br>
BTW. --overwrite will remove local revisions which are not present in
the branch you are pulling from.<br>
</div>
<blockquote class="gmail_quote"
style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">bzr
diff -r 1725 setup.py<br>
# hmm.. bad, Should be at 1727 and different.</blockquote>
<div><br>
this command would show all the changes to setup.py after rev 1725.<br>
<br>
`bzr diff setup.py` would show you how your current setup.py differs
from the latest rev.<br>
<br>
regards<br>
marius<br>
</div>
</div>
<br>
</blockquote>
<br>
</blockquote>
<br>
</body>
</html>