Tagged Questions

6
votes
1answer
381 views

How to avoid mixed eol-styles in a svn repository

Is there a best practice for preventing mixed eol-styles in a subversion repository. I know that svn:eol-style=native can be set as an auto-prop, but I would have to ensure that it was set for all ...
4
votes
6answers
1k views

Can git-svn be made to handle CRLF like native subversion clients?

I have a subversion repository hosted on Linux but only ever accessed via windows clients as it's for the source of a large Windows application. It would be awesome if I could work on this repository ...
3
votes
2answers
967 views

SVN Update adds ^M when conflicts?

We've been working on some files at the same time. Occasionally, when we "svn up" we'll see files with "^M"'s appended to every line of certain files. We originally blamed each other's editors >_>. ...
2
votes
1answer
475 views

Force svn:eol-style=native on the server?

Currently, in order to ensure the subversion property eol-style is set to native for each new file added to our project, we have to add this to the ~/.subversion/config file on each of our developers ...
2
votes
4answers
2k views

SVN Line ending Style

When i try to commit the file in SVN its showing error as "Commit failed".Details follow....commit svn: Inconsistent line ending style.
1
vote
1answer
231 views

Checking out a Linux-based subversion project into Windows and line endings

I am collaborating on a project hosted in a Subversion repository on a Linux server. My computer runs Windows XP. I am using CollabNet's Windows Subversion command-line client on my Windows XP ...
0
votes
2answers
79 views

How can I ignore eol changes and all white space in svn?

Combining svn diff --ignore-eol-style and --ignore-all-space is not working: $ svn diff -x -w --ignore-eol-style -r 1143:1177 somefile svn: invalid option: --ignore-eol-style And, $ svn diff -x ...