How to install Moodle 3.2 from git

How to install Moodle 3.2 from git

by Bente Olsen -
Number of replies: 5
Picture of Testers Picture of Translators

Git does naturally not recognize MOODLE_32_STABLE, so what is the correct command to obtain Moodle 3.2 from git?

Average of ratings: -
In reply to Bente Olsen

Re: How to install Moodle 3.2 from git

by Richard Oelmann -
Picture of Core developers Picture of Plugin developers Picture of Testers
I don't think Moodle 3.2 is released as a 'STABLE' yet, so wouldn't the MASTER branch be the latest release candidate to use for testing?
In reply to Bente Olsen

Re: How to install Moodle 3.2 from git

by Mike Churchward -
Picture of Core developers Picture of Plugin developers Picture of Testers

3.2 is currently the "master" branch. It won't have its own branch until it is almost ready to be released.

mike

Average of ratings: Useful (1)
In reply to Mike Churchward

Ang: Re: How to install Moodle 3.2 from git

by Bente Olsen -
Picture of Testers Picture of Translators

I use to use

git clone --depth=1 -b MOODLE_31_STABLE git://git.moodle.org/moodle.git

Does that mean that I can use

git clone --depth=1 -b MOODLE_32_MASTER git://git.moodle.org/moodle.git

to install a test site?

In reply to Bente Olsen

Re: Ang: Re: How to install Moodle 3.2 from git

by Davo Smith -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

No, it should be:

git clone --depth=1 -b master git://git.moodle.org/moodle.git


Average of ratings: Useful (2)