up vote 38 down vote favorite
10
share [g+] share [fb]

I'm new to Eclipse. 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?

subclipse

link|improve this question

feedback

5 Answers

up vote 69 down vote accepted

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

So you must:

  1. Delete it from the repository
  2. Recreate it in Eclipse
  3. Set svn:ignore on it via Team->Add to svn:ignore

Good luck!

/Henrik

link|improve this answer
Works as stated. Been fighting with this for hours... Henrik is the MAN :) – Josh Feb 17 '11 at 18:37
2  
Well in fact. This is not a solution. I have the same problem and my files and folders I want to ignore are not under version control. Still I cannot ignore them because the svn:ignore is grayed out. – Jagger Nov 13 '11 at 22:18
1  
@Henrik its a long time but can u tell me what i should do if i dont want a file, such as my database.properties file, which is already on the repository to not be pushed to the repository on commit. – khizar Jan 18 at 12:44
@Jagger: the parent folder has to be already in svn to be able to set the svn:ignore property – mmoossen Jan 19 at 13:41
@mmoossen: The problem is the parent folder is already in svn. The situation I have is: a folder that is a package (already checked into svn) and the subpackage (which is a subfolder) with generated JAXB code (which I do not want to check in). The button is grayed out even if the parent folder is in svn. – Jagger Jan 19 at 17:07
feedback

I was able to do this using TortoiseSVN directly from Windows explorer:

Right click on file to ignore->TortiseSVN->Delete and add to ignore list

I had to close then re-open the project in Eclipse, job done :)

link|improve this answer
feedback

This is just a WAG as I am not a Subclipse user, but have you ensured that the folders containing what you're trying to ignore have themselves been added to SVN? You can't svn:ignore something inside a folder that's not under version control.

link|improve this answer
yup, the containing folder is in the SVN – KevMo Jul 1 '09 at 1:04
feedback

It seems Subclipse only allows you to add a top-level folder to ignore list and not any sub folders under it. Not sure why it works this way. However, I found out by trial and error that if you directly add a sub-folder to version control, then it will allow you to add another folder at the same level to the ignore list.

alt text

For example, refer fig above, when I wanted to ignore the webapp folder without adding src, subclipse was not allowing me to do so. But when I added the java folder to version control, the "add to svn:ignore..." was enabled for webapp.

link|improve this answer
feedback

This is quite frustrating, but it's a containment issue (the .svn folders keep track also of ignored files). Any item that needs to be ignored is to be added to the ignore list of the immediate parent folder.

So, I had a new sub-folder with a new file in it and wanted to ignore that file but I couldn't do it because the option was grayed out. I solved it by committing the new folder first, which I wanted to (it was a cache folder), and then adding that file to the ignore list (of the newly added folder ;-), having the chance to add a pattern instead of a single file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.