views:

19

answers:

1

I am using the command line SVN client (for speed reasons) and have a changelist of files that I wish to ignore on each commit (much like TortoiseSVN does). Is there a way to commit all files except a specific changelist or maybe just commit all files not in a changelist?

Thanks

A: 

No. The changelist is intended for the other way around. Just commit files which are contained in the changelist and not exclude them from committing. If you like to ignore files you should put the into the svn:ignore property, but only if they are not under version control.

khmarbaise
Problem is they are, I have locally modified them so that they display certain information only to me but don't want everyone else seeing this.
Nat Ryall