Lukasz Kujawa
Lukasz Kujawa

Reputation: 3096

Turn off auto add in Eclipse subversion plugin (Subeclipse) on commit

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

Answers (2)

Franz
Franz

Reputation: 1

Uncheck the "Show unversioned files" box before validating your commit

Upvotes: 0

Borislav Sabev
Borislav Sabev

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

Related Questions