I am investigating a way to commit all modified/added files via the command line with Subversion, excluding a provided black list. Is this possible?
If I have, say, 100 files I would like to commit, but interspersed with that list are seven files that I don't want to commit. Is there a way to say "commit all files excluding /path/to/file1.php, /path/to/file2.php, /path/to/file3.php", etc....
For example, I would have to do something like:
svn ci [list all files to commit in here] -m 'my commit message'
However, is there a better way to do it? I can't find anything documented regarding it.