vote up 3 vote down star

We have a single SVN repository with multiple related projects. Like so...

\repo
  \Project1
    \branches
    \tags
    \trunk
  \Project2
    \branches
    \tags
    \trunk
  \Project3
    \branches
    \tags
    \trunk

I would like to check out the trunk of each project into my workspace without the branches/tags folders.

\workspace
  \Project1
    \trunk
  \Project2
    \trunk
  \Project3
    \trunk

Is there a way to do this without checking each trunk out individually?

flag

5 Answers

vote up 3 vote down check

Short answer: no.

Long answer: See http://svnbook.red-bean.com/en/1.5/svn.advanced.sparsedirs.html and do your checkouts in a looped script.

link|flag
Not the answer I wanted to hear... :-( but thanks for the quick and accurate response any way. Looks like I'll be writing a script today. – Chris Nava May 18 at 20:07
1  
I found a batch file to automate the process. lostechies.com/blogs/hex/… – Chris Nava May 18 at 20:40
vote up 1 vote down

You can use the -N option, which ignores subdirectories, You can run this the very first time you check out the sources:

svn co -N http://path/to/repo
cd repo
for f in Project1 Project2 Project3; do
  svn up -N $f
  svn up $f/trunk
done

And to update the trunks at a later time:

svn up repo/*/trunk

This works with all svn clients. If you're using a svn 1.5.x client, you can also have a look at "sparse directories", documented at svnbook.red-bean.com/en/1.5/svn.advanced.sparsedirs.html (I'm not allowed to post links yet :-C), which will allow you to run "svn update" in the repo directory.

link|flag
vote up 1 vote down

EDIT: check out the SVN Book for the sections below

Check out 2 different directories into two separate working copies:

$ svn checkout file:///tmp/repos/test  file:///tmp/repos/quiz
A  test/a
A  test/b
Checked out revision 2.
A  quiz/l
A  quiz/m
Checked out revision 2.
$ ls
quiz  test

Check out 2 different directories into two separate working copies, but place both into a directory called 'working copies':

$ svn checkout file:///tmp/repos/test  file:///tmp/repos/quiz working-copies
A  working-copies/test/a
A  working-copies/test/b
Checked out revision 2.
A  working-copies/quiz/l
A  working-copies/quiz/m
Checked out revision 2.
$ ls
working-copies
link|flag
vote up 0 vote down

I suspect you'll still have to tell it about (checkout) each individual trunk - but you can at least also checkout the workspace (to get all the projects, and so you can update etc globally) using sparse directories.

link|flag
vote up 0 vote down

This did the trick nicely in bash. Note that I renamed the output folders to make Eclipse happier when importing the projects.

for f in `svn ls http://path/to/repo`; do svn checkout http://path/to/repo/${f}trunk $f; done
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.