Get source code: Difference between revisions

From KolibriOS wiki
Jump to navigation Jump to search
m (Updated formatting and English a little bit.)
Line 1: Line 1:
The KolibriOS developer team makes use of a central Git source code repository.<br>
The KolibriOS developer team makes use of a central Git 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.<br><br>
It contains not only KolibriOS kernel and drivers, but also almost all programs and libraries that are present in this OS.


The repository is located https://git.kolibrios.org/KolibriOS/kolibrios.git<br>
The repository is located https://git.kolibrios.org/KolibriOS/kolibrios.git<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 Git==
There are also read-only repository mirrors:
* https://github.com/KolibriOS/kolibrios.git
* http://repo.or.cz/w/kolibrios.git
 
Keep in mind that these repositories are for checkouts only, not commits.
 
== Installing Git ==


=== Linux ===
=== Linux ===
*Ubuntu
*Ubuntu
: <code>apt-get install git</code>
: <code>apt-get install git</code>
*Archlinux
*Arch Linux
: <code>pacman -S git</code>
: <code>pacman -S git</code>


=== Mac OS ===
=== Mac OS ===
*Mountain Lion
*Mountain Lion
: Install the Command Line Tools for ''Xcode from Xcode -> Preferences -> Downloads''.
: Install the Command Line Tools for ''Xcode from Xcode -> Preferences -> Downloads''.
Line 22: Line 28:


=== Windows ===
=== Windows ===
*[https://gitforwindows.org/ Git for Windows]
*[https://gitforwindows.org/ Git for Windows]


== Get code ==
== Get code ==
*In a terminal go to where you want to put the source code of Kolibri.
 
*In a terminal, go to where you want to download the source code of KolibriOS.
*Now run the following and wait:
*Now run the following and wait:
: <code>git clone https://git.kolibrios.org/KolibriOS/kolibrios.git</code>
: <code>git clone https://git.kolibrios.org/KolibriOS/kolibrios.git</code>


=== Git mirrors ===
=== Git mirrors ===
As mentioned above, http://repo.or.cz/w/kolibrios.git is a read-only mirror of Git repository.
 
You cannot commit to this repo, it is just a mirror of the official Git.
As mentioned above, there are two official mirrors of central Git repository:
Please get oficial Git write access if you wish to make contributions!
* https://github.com/KolibriOS/kolibrios.git
* http://repo.or.cz/w/kolibrios.git  
 
Remember that there are read-only mirrors of Git repository, you cannot commit to these repositories.<br>
Please get write access to official Git repository if you wish to make contributions or make pull request from your local copy of repository!


[[Category:Manuals]]
[[Category:Manuals]]
[[Category:Development]]
[[Category:Development]]

Revision as of 11:00, 19 January 2025

The KolibriOS developer team makes use of a central Git source code repository. It contains not only KolibriOS kernel and drivers, but also almost all programs and libraries that are present in this OS.

The repository is located https://git.kolibrios.org/KolibriOS/kolibrios.git

There are also read-only repository mirrors:

Keep in mind that these repositories are for checkouts only, not commits.

Installing Git

Linux

  • Ubuntu
apt-get install git
  • Arch Linux
pacman -S git

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

Get code

  • In a terminal, go to where you want to download the source code of KolibriOS.
  • Now run the following and wait:
git clone https://git.kolibrios.org/KolibriOS/kolibrios.git

Git mirrors

As mentioned above, there are two official mirrors of central Git repository:

Remember that there are read-only mirrors of Git repository, you cannot commit to these repositories.
Please get write access to official Git repository if you wish to make contributions or make pull request from your local copy of repository!