All, I read about ignoring folders in subversion like this:
How do I ignore a directory with SVN?
My Repository structure is like this:
ParentFolder
---|MY_REPO
----------|folder1
-----------------|MyPrj
------------------------|src
------------------------|bin
------------------------|.project
------------------------|.classpath
Now the bin folder automatically gets generated when ever someone imports the eclipse project ("MyPrj") in eclipse. And the classes automatically gets created within the bin folder.
I want to set a rule on the svn server (repository) so that the users will get to see the bin folder but once they build the project using eclipse they DO NOT see a '?' symbol in the class files and folders in bin folder. I want to avoid having any user accidentally comitting the file/folder changes.
Is it possible in subversion?
Thanks