Reputation: 83397
Is there any way to skip files with invalid filenames during checkout with TortoiseSVN (Windows 7)?
By default, if TortoiseSVN runs across a file with invalid file name, it aborts the checkout:
I'd like TortoiseSVN to ignore such files and continue the checkout.
Upvotes: 2
Views: 1812
Reputation: 28194
The only way I can think of is to perform a sparse checkout (also see http://svnbook.red-bean.com/en/1.7/svn.advanced.sparsedirs.html). Then manually update the files that you do want.
Or, rename your files to be compatible with all filesystems your project might be checked out to.
Upvotes: 2