0

How can I skip on the fly static files like images or documents that I don’t need while cloning a remote subversion repository?

nlegall
  • 32
  • 9

2 Answers2

0

I guess, that mean checkout when say 'clone'?

If you have all unwanted files in one directory, you can use sparse checkout (http://svnbook.red-bean.com/en/1.7/svn.advanced.sparsedirs.html).

But if unwanted files scattered around repository, then... I don't think it is possible

Sergey Azarkevich
  • 2,641
  • 2
  • 22
  • 38
0

I create a PowerShell script in order to perform the svn checkout. It uses sparse checkout with a folder list for exclusions.

You can see it here : http://pastebin.com/40VBxjVN

Thanks

nlegall
  • 32
  • 9