mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
- make internal links relative where applicable - delete link to the wiki, as the documentation is in the main repo, not the wiki - remove some "example in oai code" as the examples either don't exist, or are not in that place, and we can reasonably expect people to grep Signed-off-by: Robert Schmidt <robert.schmidt@openairinterface.org>
1.7 KiB
1.7 KiB
The OpenAirInterface software can be obtained from our gitLab server. You will need a git client to get the sources. The repository is used for main developments.
Prerequisites
You need to install git using the following commands:
sudo apt-get update
sudo apt-get install git
Clone the Git repository (for OAI Users without login to gitlab server)
The openairinterface5g repository holds the source code for the RAN (4G and 5G).
All users, anonymous access
Clone the RAN repository:
git clone https://github.com/duranta-project/openairinterface5g.git
For contributors
Configure git with your name/email address, important if you are developer and want to contribute by pushing code. Please put your full name and the e-mail address you use in Gitlab.
git config --global user.name "Your Name"
git config --global user.email "Your email address"
More information can be found in the contributing page.
Which branch to checkout?
develop: contains recent commits that are tested on our CI test bench. The update frequency is about once a week. 5G is only in this branch. It is the recommended and default branch.master: contains a known stable version.
You can find the latest stable tag release here.
The tag naming conventions are:
- On
masterbranch: vx.y.z - On
developbranchyyyy.wxxyyyyis the calendar yearxxthe week number within the year
More information on work flow and policies can be found in this document.