You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Vojáček Aleš <av...@fblgroup.cz> on 2010/05/31 16:21:38 UTC

Inconsistent line ending style

Hi all,
If I'm trying svnlook proplist /svnrep/ -r 435 --revprop
I get back Error Inconsistent line ending style.
But when I try svnlook info /svnrep/ -r 435
I get back informations from Revision properties.
Is there any way how to fix that, or some workaround?

Thank you A.

Re: Inconsistent line ending style

Posted by Ryan Schmidt <su...@ryandesign.com>.
On May 31, 2010, at 11:21, Vojáček Aleš wrote:

> If I'm trying svnlook proplist /svnrep/ -r 435 --revprop
> I get back Error Inconsistent line ending style.
> But when I try svnlook info /svnrep/ -r 435
> I get back informations from Revision properties.
> Is there any way how to fix that, or some workaround?

You didn't say which revision property you were looking for, but it sounds like at least one of them has somehow been stored with inconsistent line endings, possibly the svn:log property since that's the most likely one to have multiple lines at all. You could edit the property and fix its line endings to be consistently UNIX-style LF line endings (using for example "svn propedit --revprop -r 435 svn:log" and then fixing the line endings in your editor). Then try what you were doing again.