
On Aug 15, 2007, at 1:11 PM, John Maddock wrote:
Robert Ramey wrote:
I'm having problems checking in a couple of file types:
*.vcproj // text xml for VC projects *.sln // text xml for VC solutions
These don't appear in my local SVN configuration. And the pre-commit script is complaining about them. Could this be fixed please?
As I understand it, this is deliberate, and it's up to you to ensure that every file you commit has valid Mime types set.
Yes.
To do this automagically in future: locale your SVN config file and add something like:
*.sln = svn:eol-style=native; svn:mime-type=text/xml *.vcproj = svn:eol-style=native; svn:mime-type=text/xml
svn:eol-style for these two types should be CRLF. I've added these to http://svn.boost.org/trac/boost/wiki/BoostSubversion where the handing of EOL style and MIME types is described. - Doug