I need to apply the eol-style property recursively on an existing repository. The repository contains both text files and binaries. I want to apply this property only on the text files, and not on the binary files. How can this be done from the command line or in a script?
views:
23answers:
1
+1
A:
Something like
find . -name \*.txt -print0 | xargs -0 svn ps svn:eol-style native
to set svn:eol-style
to native
on all *.txt
files.
laalto
2010-10-26 10:18:28