I have a home-grown automated build script in the form of a DOS batch file. In part of that script, I check out (with \"svn checkout\") a section of our SVN repository that
For a powershell specific implementation of the answer from Michael Hackner, try something like:
svn ls http://svn-server/src --recursive | Out-File svn.txt
Get-Content .\svn.txt | where {$_.toLower().EndsWith('special.xml')} | select -First 200 | foreach {New-Object PSObject -Property @{ Path = $_; Munged = $_.Replace('/', '_') } } | foreach { svn export "http://svn-server/src/$($_.Path)" $($_.Munged) }
My particular use case here is finding a bunch of similarly named files (in this case *special.xml) and dumping them all into a single folder, with essentially unique names. I have used an intermediate file to store the entire repo listing, but this could all be inlined as well if that's better for you.
You can't check out just a few specific files -- you can only check out a whole folder. You can rearrange the organization of what you're checking out, or you can just copy a working copy from somewhere else and update.
This is possible: you can svn checkout an empty directory, and then svn update filename for each file that you do want.
Your script can do something like:
svn checkout svn://path/to/repos/directory --depth emptysvn list --recursive svn://path/to/repos/directorygrepsvn update --parents each fileThat would give your desired result of a working copy without certain files or file extensions.
Of course, there is also the issue that you mention of “people [checking] in lots of fluff” but that’s a separate matter.
I just tried the approach presented by Michael Hackner. Below is the implementation for a DOS system. Note that you have to to checkout the empty folder before running this script.
@echo off
svn list --recursive https://path_to_repository_folder | find /I ".sql" > filelist.txt
REM Specify a custom delim. Otherwise space in filename will be treated as a delimiter.
FOR /F "delims=|" %%i IN (filelist.txt) DO (
echo -------------
echo %%i
svn update --parents "%%i"
)
The most simple and a correct way to do this: DON'T DO IT!
If there is some crap in third party folder where there suppose to be .dll files that needs to be checkout - remove that crap to a different location! It does not belong here anyway.
As I told here, there is only one option build into SVN itself: A new feature in SVN 1.5 called sparse checkout, however you can only select checkout on directory level, so you have to sort the files you do not need in a different directory.