views:

33

answers:

1

How can I change the type of all the files in a repository SVN who have the extension xml from the binary type to text.

I do not want to change the type of one file only but all files with extension .xml

+2  A: 

There is another post on this:

http://stackoverflow.com/questions/458609/how-to-explicity-tell-svn-to-treat-a-file-as-text-not-binary

Basically use this: svn blame file/to/blame --force

Nick Felicelli
Thanks, I saw. But concretely what I have to do?I do not want to change the type of one file only but all files with extension .xml
TaintedLove