Project

General

Profile

Actions

DevelGit » History » Revision 1

Revision 1/20 | Next »
jan, 2006-07-04 13:00
added svn setup instructions


= Subversion =

Checkout
Currently we use the 1.4.x merge tree as the head for the 1.4.x release series. {{{
#!ShellExample
$ svn checkout svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x/
}}}

1.5.x will be trunk/ again.

Config

If you are developing on lighty and want to commit to the subversion tree, you need some properties set to make sure that you have the right EOL style.

On win32 you set the config in {{{
#!ShellExample
cmd> notepad APPDATA\Subversion\config
}}}

on Unix in {{{
#!ShellExample
$ vi ~/.subversion/config
}}}

The configfile should already exist and should contain several examples. You only have to
remove the #-sign from the beginning of the line and set these options:

{{{
[miscellany]
enable-auto-props=yes

[auto-props]
.c = svn:eol-style=native
.h = svn:eol-style=native
}}}

This will make sure that everyone gets the right line-endings on all platforms and (more important)
everyone can commit with his local EOL-style without breaking the line-endings for other users.

Updated by jan over 17 years ago · 1 revisions