Reputation:
I have a Delphi XE4 project folder say MyProject. In MyProject folder, there are some files which are changed automatically when I compile the project and I need not to check in those files.
For example: .drc, .exe, .identcache, .local, .map, .res, .vrc
Whenever I right click MyProject and press Commit, I want these files should not appear in the list of modified files. How can I get this filter in SVN?
Upvotes: 1
Views: 1955
Reputation: 97355
But The Right Way (tm) is svn:ignore these file-types, remove from repository (create copy files outside WC before, because removing from repo remove file from WC) and have these artifacts as local-only ignored by SVN files in Working Copies
Upvotes: 2