Re: [Python-Dev] Subversion repository question - back up to older versions

2006年6月08日 12:20:32 -0700

On Thu, Jun 08, 2006 at 01:52:09PM -0500, [EMAIL PROTECTED] wrote:
> Maybe this belongs in the dev faq. I didn't see anything there or in the
> Subversion book.
http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.checkout.html
http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.update.html
> I have three Python branches, trunk, release23-maint and release24-maint.
> In the (for example) release24-maint, what svn up command would I use to get
> to the 2.4.2 version? In cvs I'd use something like 'cvs up -r r242'. How
 You have to know the branch URL and the revision number. Then do
svn co -r 242 http://svn.example.org/svnroot/branch/
 or
svn up -r 242
> do I get a list of tags? In cvs I'd do something like 'cvs log | less'.
 Tags and branches in Subversion are just directories in the virtual SVN
filesystem. So you can use svn ls,
http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.list.html
 or view the repository via ViewVC. These are python tags:
http://svn.python.org/view/python/tags/ . Here is the tag for 2.4.2:
http://svn.python.org/view/python/tags/r242/
Oleg.
-- 
 Oleg Broytmann http://phd.pp.ru/ [EMAIL PROTECTED]
 Programmers don't die, they just GOSUB without RETURN.
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to