Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Git for Administrators.

Git for Administrators

From MoodleDocs
Revision as of 15:37, 14 February 2011 by koen roggemans (talk | contribs)


An alternative way for maintaining your Moodle server via CVS_for_Administrators is using Git.

Purpose of this article

The purpose of this articla is to describe how to maintain a copy of Moodle on your production server, that is easy to upgrade using Git. If you have customisations of Moodle core code, you are advised to follow the instructions on Development:Quick_Git_start_guide_for_Moodle_development

Where are the files

You can find the official Moodle git repository on git://git.moodle.org/moodle.git and git://github.com/moodle/moodle.git

Initial download of the Moodle code

git clone git://github.com/moodle/moodle.git

Moving to the correct version of Moodle

(only if you need something else then master)

  • List all existing branches

git branch -a

  • Move to the desired branch

git checkout BRANCHE_NAME

Now your code base is on the correct version

Updating your installation

Moodle.com performs testing and integration of fixed bugs every Tuesday, so on Wednesday you can install all patches by updating your code.

git pull

Important note

At the moment, master is Moodle 2.x stable. It is wise to do a git branch -a before a git pull to see whether Moodle 2.0 isn't branched. If Moodle 2.0 gets branched and you are still on master, you will be updating to the latest development version, which is not desirable on a production server.