Developer Area/Source code
From Mahara Wiki
< Developer Area(Redirected from Developer Area/Getting Code from Git)
This page discusses where and how Mahara source code is managed.
The short version
You can clone it anonymously from git.mahara.org:
git clone https://git.mahara.org/mahara/mahara.git
Or from any of these servers, which are kept in sync with git.mahara.org:
You'll probably also want to check out the branch for whatever stable version of Mahara you're using. For instance, if you're on Mahara 15.04, you would do:
git checkout 15.04_STABLE
The long version
Git
The Mahara Project source code is managed using the Git distributed version control system. In the normal Git workflow, developers "clone" the Mahara project Git repository, which means they have their own full copy of the source code including all branches and history. So if any or all of the official Git repo's listed below were to go away, the project could always be restarted from a single dev's copy of the repo.
If you haven't used Git before, well, it does have a nasty learning curve. Taking a couple of hours to go over a Git tutorial that covers the underlying concepts (preferably something that includes the phrase "directed acyclic graph") is highly recommended.
Branches & Tags
Mahara maintains one branch for each major version of Mahara. For a major verison X.Y, the corresponding branch will be X.Y_STABLE. For instance, Mahara 15.04 is in branch 15.04_STABLE, 1.7 is in 1.7_STABLE, etc.
Minor releases are marked by tags. Release X.Y.Z will be marked with tag X.Y.Z_RELEASE.
Additionally, there is a "master" branch which contains development work on the next major release that has not been released yet.
For more information on Mahara versions and the release cycle see:
reviews.mahara.org
At present the "live" version of the code base is in the git repository of our Gerrit code review system, https://reviews.mahara.org . The code here is usually updated by people pushing patches into Gerrit, where they are reviewed and merged by Mahara core developers. Users with the right permissions can also push patches directly to this git repo, and this happens occasionally as well (for instance the version bumps that are done by the scripts that package up our releases).
To push patches to gerrit, you'll need to set up an account in gerrit and clone via SSH, as described in Developer_Area/Contributing_Code
Synced git repositories
The Mahara Gerrit site automatically replicates all changes into our repositories in several locations in near realtime. If you are going to clone the Mahara repository, it's preferred that you clone it from one of these sites rather than from https://reviews.mahara.org, in order to reduce the load on our Gerrit server.
- git.mahara.org: https://git.mahara.org/mahara/mahara
- git.mahara.org is the official main git repository of the Mahara project.
- Github: https://github.com/MaharaProject/mahara
- gitlab.com: https://gitlab.com/mahara/mahara
- NZOSS: https://git.nzoss.org.nz/mahara/mahara
Related code
git.mahara.org contains some additional repositories that contain code related to Mahara and/or used by the Mahara project. The main ones that are not defunct:
- mahara-scripts contains scripts used in the Mahara release management process
- manual contains the Mahara manual
Third-party plugins
Mahara is quite pluggable, and there are many third-party plugins available for Mahara. Third-party plugin authors each have their own code repositories, often on Github. There was formerly a "mahara-contrib" repository in the Mahara project on Gitorious, but it's no longer in active use.