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?

|
|
|
You can't svn:ignore a file that is already commited to repository. So you must:
Good luck! /Henrik |
|||||||||||||||||||
|
|
I was able to do this using TortoiseSVN directly from Windows explorer: Right click on file to ignore-> I had to close then re-open the project in Eclipse, job done :) |
|||||
|
|
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. |
|||
|
|
|
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.
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. |
|||
|
|
|
Working with Subclipse on Eclipse Indigo Service Release 2 I had commited folders with temporary files and logs lying under /src to the SVN repository. And after realizing it, I found myself in the same situation with a grayed out "svn:ignore" I found following solution: 1. I deleted the folder from my Project Source 2. Team -> Commit... withouth the folder 3. Recreated the folder back into the project tree Now I was able to use "Team -> Add to svn:ignore..." |
|||
|
|
|
What worked for me was following : (eclipse 3.3.6 Subclipse 2.4)
|
|||
|
|
|
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. |
|||
|
|