You are probably safer to exclude certain types of files, rather than collecting the ones you want to include, since then you can add a new type and not realize that it was not a version.
In each directory, you can edit the svn: ignore property.
Run
svn propedit svn:ignore .
for each corresponding directory to call the editor with a list of templates to ignore.
Then place the template on each line corresponding to the type of file you want to ignore:
*.user *.exe *.dll
and what do you have.
Alternatively, as suggested, you can add these patterns to the global-ignores in the ~ / .subversion / config file (or "%APPDATA%\Subversion\config" on Windows - see Configuring the configuration area in the red bean book for more information ). In this case, separate the patterns with spaces. Here is mine. # comment is entered at the beginning of the line. I ignored the Ankh.Load files and all the * .resharper.user files:
which Subversion will ignore in its 'status' output, and
Blair Conrad Sep 23 '08 at 17:06 2008-09-23 17:06
source share