Reputation: 38573
I am trying to ignore some files that I have already committed to the repository in subclipse
I followed this from Subclipse svn:ignore
You can't svn:ignore a file that is already commited to repository.
So you must:
- Delete it from the repository
- Recreate it in Eclipse
- Set svn:ignore on it via Team->Add to svn:ignore
I am still getting a greyed out menu when I select Team->Add to svn:ignore
what do I need to do?
Upvotes: 2
Views: 4144
Reputation: 3707
You probably need to Update from svn, rather than reverting, to pull in the changes that you made in the repository.
Revert in Subversion just re-syncs your working copy with the server, at the version you had previously checked out. If you made the change elsewhere, you need to update your working copy to point to the newer version on the server: that's the update operation.
Upvotes: 2