How can I skip on the fly static files like images or documents that I don’t need while cloning a remote subversion repository?
Asked
Active
Viewed 41 times
2 Answers
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
-
Yes, I think clone when say checkout – nlegall Jun 05 '15 at 10:32
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