From owner-freebsd-current@FreeBSD.ORG Sun Aug 9 14:57:57 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FB261065670 for ; Sun, 9 Aug 2009 14:57:57 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 84D0E8FC26 for ; Sun, 9 Aug 2009 14:57:56 +0000 (UTC) Received: (qmail invoked by alias); 09 Aug 2009 14:31:15 -0000 Received: from p54A3AAA7.dip.t-dialin.net (EHLO tron.homeunix.org) [84.163.170.167] by mail.gmx.net (mp018) with SMTP; 09 Aug 2009 16:31:15 +0200 X-Authenticated: #1673122 X-Provags-ID: V01U2FsdGVkX1/tITIwblvtPfW+o5UnUx6xYjfXm6v3zgWsr4SLgS RIKVW9UL4FmHjU Message-ID: <4A7EDDB1.6060208@gmx.de> Date: Sun, 09 Aug 2009 16:31:13 +0200 From: Christoph Mallon User-Agent: Thunderbird 2.0.0.22 (X11/20090809) MIME-Version: 1.0 To: Giorgos Keramidas References: <409F1C03-B18C-4084-93D0-3D1918D7F105@exscape.org> <20090808174443.GT1292@hoeg.nl> <200908081044.55066.mel.flynn+fbsd.current@mailing.thruhere.net> <87my692ix7.fsf@kobe.laptop> In-Reply-To: <87my692ix7.fsf@kobe.laptop> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.62 Cc: Mel Flynn , Ed Schouten , freebsd-current@freebsd.org, Thomas Backman Subject: Re: What's up with the SVN repository? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2009 14:57:57 -0000 Giorgos Keramidas schrieb: > On Sat, 8 Aug 2009 10:44:54 -0800, Mel Flynn wrote: >> Also, what's the equivalent of find /usr/src -type d -name CVS -exec echo >> TRELENG_8 \>{}/Tag \; or do we have to svn diff for local patches, rm -rf, >> checkout stable/8 and re-apply diffs? > > It should be possible to 'svn switch'... > > cd svn-head-workspace > svn switch --relocate http://svn.freebsd.org/base/stable/8 --relocate is used *only* if the URL of the repository changes but the content stays the same. E.g. FreeBSD gets renamed to UnfreeBSD and so the URL of the repository changes to http://svn.unfreebsd.org/base/, then you use --relocate. svn switch --relocate does something completely different than svn switch. The latter is used to switch between branches. Christoph