How do I stop Subversive from setting svn:mime-type to text/plain on initial commit?
svn:mime-type
text/plain
My Java code is being checked into my repository wit
If your project already got messed by subversive, cd to project root and run the following commands
find . -name "*.java" -exec svn propset svn:mime-type 'text/x-java' {} \; find . -name "*.xml" -exec svn propset svn:mime-type 'text/xml' {} \;