I\'m developing with many people.
I check out remote repository, get 3 file. After edit, run:
svn status
It shows:
I wound up making a script containing the following:
svn ci $(svn diff --summarize | \
grep -v exclude.file1 | \
grep -v exclude.file2 | \
...
grep -v exclude.fileN \
)
I'm sure someone can make it even more flexible by making this script read a file which would contain a list of files to be excluded from the commit.