Contents |
First, you will need to install an SVN client in order to access SVN servers, just like you need a web browser to access HTTP servers. For Windows, I recommend TortoiseSVN.
This guide assumes that you use TortoiseSVN.
This step is very important, as it will tell TortoiseSVN to correctly convert Unix line endings to Windows line endings in text files.
In Notepad, find this line:
# enable-auto-props = yes
Change it to:
enable-auto-props = yes
Find this line:
# *.c = svn:eol-style=native
After that line, add the following text:
*.c = svn:eol-style=native *.cpp = svn:eol-style=native *.h = svn:eol-style=native *.dsp = svn:eol-style=CRLF *.dsw = svn:eol-style=CRLF *.sh = svn:eol-style=native;svn:executable *.txt = svn:eol-style=native *.png = svn:mime-type=image/png *.jpg = svn:mime-type=image/jpeg Makefile = svn:eol-style=native SConscript = svn:eol-style=native SConstruct = svn:eol-style=native Distfiles = svn:eol-style=native *.url = svn:eol-style=CRLF *.bat = svn:eol-style=CRLF *.pas = svn:eol-style=CRLF *.dfm = svn:eol-style=CRLF *.pl = svn:eol-style=native;svn:executable *.pm = svn:eol-style=native *.html = svn:eol-style=native *.pm = svn:eol-style=native *.py = svn:eol-style=native *.js = svn:eol-style=native *.css = svn:eol-style=native *.pc = svn:eol-style=native *.svg = svn:eol-style=native *.xs = svn:eol-style=native *.po = svn:eol-style=native *.pot = svn:eol-style=native
When you're done, save the file and proceed to the next paragraph.
The OpenKore SVN repository contains several modules. A module is a subfolder on the SVN server, containing an OpenKore-related project. You're probably looking for the openkore module. For other modules, see the list of SVN modules.
You should regularly update the module. This means telling TortoiseSVN to download the latest files from SVN. TortoiseSVN will only download the things that have changed, so it saves bandwidth.
Rightclick on an empty spot in the module's folder and choose SVN Update. That's all.
To start OpenKore, see Running OpenKore from source.
First you need to install Subversion if you don't already have it.
You can checkout the openkore SVN module with the following command:
svn checkout https://openkore.svn.sourceforge.net/svnroot/openkore/openkore/trunk/
See also List of SVN modules for the URLs of other modules.
Yes. Currently there are two svn mirrors, they are:
- OpenKore SVN Zips The archives(*.zip) are generated as soon as someone committed to SVN. - OpenKore SVN Tarballs The archives(*.tar.gz) are regenerated hourly.
The .svn folder is used by TortoiseSVN to store various information, such as the URL of the SVN server. Deleting or modifying this folder will disable your ability to update from SVN.