Put svn:eol-style = native on them, then the svn client will take care of it:
svn propset -R svn:eol-style "native" dosfsck
Casper
-----Original Message----- From: ros-svn-bounces@reactos.com [mailto:ros-svn-bounces@reactos.com] On Behalf Of sedwards@svn.reactos.com Sent: 30. juli 2005 01:04 To: ros-svn@reactos.com Subject: [ros-svn] [sedwards] 16887: dos line endings
dos line endings
Updated files: trunk/rosapps/sysutils/dosfsck/boot.c trunk/rosapps/sysutils/dosfsck/boot.h trunk/rosapps/sysutils/dosfsck/byteorder.h trunk/rosapps/sysutils/dosfsck/byteswap.h trunk/rosapps/sysutils/dosfsck/byteswap1.h trunk/rosapps/sysutils/dosfsck/check.c trunk/rosapps/sysutils/dosfsck/check.h trunk/rosapps/sysutils/dosfsck/common.c trunk/rosapps/sysutils/dosfsck/common.h trunk/rosapps/sysutils/dosfsck/compiler.h trunk/rosapps/sysutils/dosfsck/dosfsck.c trunk/rosapps/sysutils/dosfsck/dosfsck.h trunk/rosapps/sysutils/dosfsck/fat.c trunk/rosapps/sysutils/dosfsck/fat.h trunk/rosapps/sysutils/dosfsck/file.c trunk/rosapps/sysutils/dosfsck/file.h trunk/rosapps/sysutils/dosfsck/getopt.c trunk/rosapps/sysutils/dosfsck/io.c trunk/rosapps/sysutils/dosfsck/io.h trunk/rosapps/sysutils/dosfsck/lfn.c trunk/rosapps/sysutils/dosfsck/lfn.h trunk/rosapps/sysutils/dosfsck/msdos_fs.h trunk/rosapps/sysutils/dosfsck/swab.h trunk/rosapps/sysutils/dosfsck/version.h trunk/rosapps/sysutils/dosfsck/vfat.h
Ros-svn mailing list Ros-svn@reactos.com http://reactos.com:8080/mailman/listinfo/ros-svn
Hi,
any developer should use some decent default property settings for subversion. Important settings include the line endings for *.c, *.cpp, *.h, *.txt and *.xml files:
"*.c"="svn:eol-style=native;svn:keywords=Author Date Id Revision" "*.cpp"="svn:eol-style=native;svn:keywords=Author Date Id Revision" "*.h"="svn:eol-style=native;svn:keywords=Author Date Id Revision" "*.xml"="svn:eol-style=native"
At the same time it enables substitution keywords for the source code files. What is also possible is specifying the mime type for well known file types:
"*.png"="svn:mime-type=image/png"
I compiled a registry script with my favour settings, and put it on the web: www.sky.franken.de/svn/SVN-config.zip
After importing the registry settings by double-clicking the .reg file the default settings are applied to any _new_ file, the user checks into the SVN repository. Already existing files are not changed in any way.
For Unix/Linux one can edit the settings in his/her SVN config file located at $HOME/.subversion/config .
Regards,
Martin
2005/7/30, Casper Hornstrup ch@csh-consult.dk:
Put svn:eol-style = native on them, then the svn client will take care of it:
svn propset -R svn:eol-style "native" dosfsckCasper