Reputation: 3096
I'm trying to use Eclipse plugin for subversion Subeclipse. When I go to commit code it preselect EVERY file in the project for me. It doesn't make sense as meny files are auto generated by my application and I don't want to commit them. Unchanging everything manually every time I want to commit is a pain.
Do you know how to turn off this feature? I don't want it to make any selection on files I didn't 'svn add'
Upvotes: 0
Views: 456
Reputation: 4866
The problem is that you select: "RightClick on Project->Team->Commit", of course this will "check" all files in the project...
What you can do is to manually select the files folders in your source tree, that you want to commit,with "Shift + LeftClick" and then do "RightClick on Selection->Team->Commit". Now you will find that only the files that were in the selection or in any folders that were selected are "checked" in the list displayed by Subclipse.
The other way is to svn:ignore
- this is the right thing to do for the "many files auto-generated by your application".
Upvotes: 1