Get source code: Difference between revisions
Jump to navigation
Jump to search
m (Mention GitHub mirror) |
|||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
== | The KolibriOS developer team makes use of a central SVN source code repository.<br> | ||
Not only the KolibriOS kernel and its drivers, but also almost all known open-source program and library can be found on this system.<br><br> | |||
The repository is located at svn://kolibrios.org and can also be browsed through http://websvn.kolibrios.org<br> | |||
<br> | |||
There are also read-only repository mirrors (only for checkout, no commits) for git: https://github.com/KolibriOS/kolibrios.git, http://repo.or.cz/w/kolibrios.git<br> | |||
== Installing Subversion == | |||
=== Linux === | === Linux === | ||
Line 13: | Line 20: | ||
*Previous versions | *Previous versions | ||
: Comes installed. | : Comes installed. | ||
=== Windows === | |||
*TortoiseSVN is a free GUI-oriented SVN client for windows. Get it here: http://tortoisesvn.net/ | |||
== Get code == | == Get code == | ||
Line 18: | Line 28: | ||
*Now run the following and wait: | *Now run the following and wait: | ||
: <code>svn checkout svn://kolibrios.org kolibrios</code> | : <code>svn checkout svn://kolibrios.org kolibrios</code> | ||
=== Git === | |||
As mentioned above, http://repo.or.cz/w/kolibrios.git is where you can grab a copy from Git. | |||
You cannot commit to the repo, the git is only a mirror of the SVN. | |||
Please get SVN write access if you wish to make contributions! | |||
[[Category:Manuals]] | |||
[[Category:Development]] |
Latest revision as of 09:06, 10 February 2023
The KolibriOS developer team makes use of a central SVN source code repository.
Not only the KolibriOS kernel and its drivers, but also almost all known open-source program and library can be found on this system.
The repository is located at svn://kolibrios.org and can also be browsed through http://websvn.kolibrios.org
There are also read-only repository mirrors (only for checkout, no commits) for git: https://github.com/KolibriOS/kolibrios.git, http://repo.or.cz/w/kolibrios.git
Installing Subversion
Linux
- Ubuntu
apt-get install subversion
- Archlinux
pacman -S subversion
Mac OS
- Mountain Lion
- Install the Command Line Tools for Xcode from Xcode -> Preferences -> Downloads.
- Or download it directly from https://developer.apple.com/downloads/
- Previous versions
- Comes installed.
Windows
- TortoiseSVN is a free GUI-oriented SVN client for windows. Get it here: http://tortoisesvn.net/
Get code
- In a terminal go to where you want to put the source code of Kolibri.
- Now run the following and wait:
svn checkout svn://kolibrios.org kolibrios
Git
As mentioned above, http://repo.or.cz/w/kolibrios.git is where you can grab a copy from Git. You cannot commit to the repo, the git is only a mirror of the SVN. Please get SVN write access if you wish to make contributions!