[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Ignoring tags and branches

From: Ryan Schmidt <subversion-2008c_at_ryandesign.com>
Date: Fri, 26 Sep 2008 20:47:47 -0500

On Sep 26, 2008, at 10:55, Trevor Harmon wrote:

> On Sep 26, 2008, at 11:46 AM, Hilco Wijbenga wrote:
>
>> So why don't you just check out trunk instead of everything?
>
> Because my repository has 50 different projects, not just two, and
> I work on any number of them from time to time. Therefore I have to
> check out everything.
>
> I guess I could do 50 separate "svn co" commands, but I was hoping
> for a better solution.

If you really need to work on all 50 projects, then the correct
solution is to issue 50 separate "svn co" commands.

You don't need to check everything out again, if you already have a
working copy of everything. Just move each trunk that you want to
save outside of the big working copy. Then delete the big working
copy. e.g. if you have this working copy on your disk now:

On Sep 26, 2008, at 10:43, Trevor Harmon wrote:

> company/project1/tags
> company/project1/branches
> company/project1/trunk
> company/project2/tags
> company/project2/branches
> company/project2/trunk

Then do this:

mv company company-old
mkdir company
mv company-old/project1/trunk company/project1-trunk
mv company-old/project2/trunk company/project2-trunk
rm -rf company-old

Now you have separate working copies in "company" for each project.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-09-27 03:48:09 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.