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 without changing base URL. Commits will go to the trunk (or whatever tag/branch it was before updating). svn switch updates *and* switch the base URL - commits will go to the tag/branch you are switching to. You can also merge some changes from another tag/branch: svn merge -r 2112:2121 http://svn.example.org/svnroot/anotherbranch/ (merge the diff between revisions 2121 and 2112 in anotherbranch into the current working directory). Oleg. -- Oleg Broytmann http://phd.pp.ru/ [EMAIL PROTECTED] Programmers don't die, they just GOSUB without RETURN. _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com