Subclipse svn:ignore

eclipse, subclipse, svn

Solution

You can't svn:ignore a file that is already commited to repository.

So you must:

- Delete the file from the repository.

- Update your project (the working copy) to the head revision.

- Recreate the file in Eclipse.

- Set svn:ignore on the file via Team->Add to svn:ignore.

- Restart eclipse to reflect changes.

Good luck!

Problem

I'm using subclipse for connecting to my SVN. There are some folders and files I would like to add to svn:ignore, but it's grayed out. Is there an easy way to get subclipse to ignore files and directories?

Original source

Related problems