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

2006-06-09 Thread Giovanni Bajo
[EMAIL PROTECTED] wrote: > Giovanni> If you realize that each file/directory in Subversion is > Giovanni> uniquely identified by a 2-space coordinate system [url, > Giovanni> revision] ... > > Thanks, I found this very helpful. I found it so helpful that I > added a question to the de

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

2006-06-09 Thread skip
Giovanni> If you realize that each file/directory in Subversion is Giovanni> uniquely identified by a 2-space coordinate system [url, Giovanni> revision] ... Thanks, I found this very helpful. I found it so helpful that I added a question to the dev faq with this as the answer. Hope

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

2006-06-09 Thread Giovanni Bajo
[EMAIL PROTECTED] wrote: > >> 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? > > Tim> First question: > > Tim>cd to the root of your rele

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

2006-06-08 Thread Oleg Broytmann
On Fri, Jun 09, 2006 at 12:03:54AM +0400, Oleg Broytmann wrote: > svn switch updates *and* switch the base URL - commits will go to the > tag/branch you are switching to. Another point of view: svn switch is kind of optimized svn checkout. svn co starts afresh and needs to transfer the entire t

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

2006-06-08 Thread Oleg Broytmann
On Thu, Jun 08, 2006 at 02:55:29PM -0500, [EMAIL PROTECTED] wrote: > Tim>svn switch svn+ssh://[EMAIL PROTECTED]/python/tags/r242 > > How is that different than noting that r242 corresponds to revision 39619 > and executing: > > svn up -r 39619 svn up updates the working directory

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

2006-06-08 Thread skip
>> 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? Tim> First question: Tim>cd to the root of your release24-maint checkout, then Tim>

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

2006-06-08 Thread skip
Oleg, Thanks for the help. With the tags url I was able to identify the revision I needed to update to. Skip ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailm

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

2006-06-08 Thread Tim Peters
[EMAIL PROTECTED] > Maybe this belongs in the dev faq. I didn't see anything there or in the > Subversion book. > > 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

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

2006-06-08 Thread Oleg Broytmann
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