vote up 2 vote down star

Hi everyone, is there a way to perform a SVN checkout (or export), which would fetch only the directory structure, i.e. no files?

Thanks in a advance.

flag

67% accept rate
Just curious - why would you want to do this? – tim Feb 11 at 15:18
@Tim: Seems like a nice way to set up the directory structure for a new project, based on that of an existing project. – onnodb Feb 11 at 15:41
@onnodb: Yes, but that's why you should have templates ready for your new projects, just export a template and you're ready. – Crossbrowser Feb 11 at 15:47
No no, I want to do some postprocessing on the directory structure in my NAnt/MSBuild tasks. – petr k. Feb 11 at 15:57

6 Answers

vote up 0 vote down

You can specify --non-recursive to the checkout command, might help you to get what you want.

link|flag
vote up 4 vote down

svn ls -R {svnrepo} | grep "/$" | xargs -n 1 mkdir -p

Export, not a checkout.

[Updated]

With Export:

env REPO={repo} sh -c 'svn ls -R $REPO | grep "/\$" | xargs -n 1 svn co --depth=empty $REPO'

This will be pretty slow for anything too large.

link|flag
vote up 2 vote down

There is a python script in the contrib tools of subversion (http://svn.collab.net/repos/svn/trunk/contrib/client-side/svn_export_empty_files.py), which creates the directory structure with empty files. With a little bit of python knowledge, it should not be to hard to skip creating the files at all.

link|flag
vote up 0 vote down

There's no way to do this, and in fact it's a slightly odd thing to want to do, so now I'm curious!

This may not be relevant, but you can prevent the files being comitted in the first place by adding an svn:ignore property on the relevant directories. This is particularly useful to prevent generated artifacts such as documentation or cache files being comitted.

link|flag
I want to replicate the repository directory structure on my local drive and then do further processing using other tools (NAnt/MSBuild). svn:ignore is not relevant. – petr k. Feb 11 at 15:21
vote up 3 vote down

SVN can't do that per se, but if you just want to export directory structure, try svn ls -R --xml to get XML listing of the directory structure and then recreate it by hand.

link|flag
vote up 0 vote down

I can't see that there is a way to do it from a brief look at svn help co. Something I've done before for updating a repository from a new version of a downloaded library (i.e. a vendor branch) is to delete everything which isn't an .svn folder:

#!/bin/sh
find ./ -type f | grep -v .svn | xargs rm -f

It's not particularly efficient if you were trying to avoid having to check those files out in the first place, but it should have the same result.

link|flag
I hope no one run by mistake this command as root on / ;-) – FerranB Feb 11 at 15:18
If you just want the tree without the .svn directories use svn export instead of svn co. – jblocksom Feb 11 at 15:31
@FerranB definitely! – Mike Houston Feb 12 at 13:46

Your Answer

Get an OpenID
or

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