I'm completely stuck with an SVN error when committing 2447 files at once. I'm using TortoiseSVN (latest version) on Windows 7 64 bits.
The fact is that some files were created on Mac, and others on PC, so TortoiseSVN stopped the commit with an annoying Inconsistent line ending style
error.
In the beginning, to solve this problem, I manually opened the incriminated file in NetBeans, added one blank space, removed it and saved the file so NetBeans converted properly all line ending characters, but it seems there are more than "some files" incriminated.
unix2dos
on a cygwin shell. – Teary\r
,\n
, etc. – Teary\w\n$
- it select all Unix EOL chars, except that it select also the first character (\w
) at the beginning... – Voyageur(\w)\n$
and replace with$1\r\n
where $1 is the character. – Soosoochow