Changes between Version 23 and Version 24 of Csle2022/Agenda/databaseandweb


Ignore:
Timestamp:
Nov 30, 2022, 7:08:47 AM (2 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/databaseandweb

    v23 v24  
    582582Then let's download the Moodle using Git repository.
    583583
    584 {{{
     584
    585585 cd /opt
    586586 sudo git clone git://git.moodle.org/moodle.git
    587587 cd moodle
    588 }}}
     588
    589589
    590590Then get a list of stable releases from below command,
    591591
    592 {{{
     592
    593593sudo git branch -a
    594 }}}
     594
    595595
    596596Here we are selecting release MOODLE_400_STABLE, track and then check out the branch selected.
    597597
    598 {{{
     598
    599599 sudo git branch --track MOODLE_310_STABLE origin/MOODLE_310_STABLE
    600600 sudo git checkout MOODLE_310_STABLE
    601 }}}
     601
    602602
    603603}}}