Changes between Version 23 and Version 24 of Csle2022/Agenda/databaseandweb
- Timestamp:
- Nov 30, 2022, 7:08:47 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Csle2022/Agenda/databaseandweb
v23 v24 582 582 Then let's download the Moodle using Git repository. 583 583 584 {{{ 584 585 585 cd /opt 586 586 sudo git clone git://git.moodle.org/moodle.git 587 587 cd moodle 588 }}} 588 589 589 590 590 Then get a list of stable releases from below command, 591 591 592 {{{ 592 593 593 sudo git branch -a 594 }}} 594 595 595 596 596 Here we are selecting release MOODLE_400_STABLE, track and then check out the branch selected. 597 597 598 {{{ 598 599 599 sudo git branch --track MOODLE_310_STABLE origin/MOODLE_310_STABLE 600 600 sudo git checkout MOODLE_310_STABLE 601 }}} 601 602 602 603 603 }}}