[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Merge bug(let)

From: Philip Martin <philip_at_codematters.co.uk>
Date: 2003-02-26 20:57:24 CET

Branko ÄŒibej <brane@xbc.nu> writes:

> I think it's even simpler than that; here's what happened with
> win-tests.py and build/win32/build_neon.bat: both files were originally
> committed with CRLF line endings and _without_ the svn:eol-style
> property. Then only the property was changed. Upon commit, the WC
> noticed the prop change, but decided there were no text changes and
> therefore didn't send new (correctly converted) text to the server.

Is that a Windows specific bug? If I do that on Unix the file gets
converted when I commit the property change

$ svnadmin create repo
$ svn co file://`pwd`/repo wc
$ printf 'abc\r\n' > wc/foo
$ svn add wc/foo
$ svn ci wc
$ od -c wc/foo
0000000 a b c \r \n
0000005
$ svn ps svn:eol-style native wc/foo
$ od -c wc/foo
0000000 a b c \r \n
0000005
$ svn ci wc
$ od -c wc/foo
0000000 a b c \n
0000004
$ rm -rf wc
$ svn co file://`pwd`/repo wc
$ od -c wc/.svn/text-base/foo.svn-base
0000000 a b c \n
0000004

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Feb 26 20:58:24 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.