diff --git a/versioned_docs/version-5.0/guides/git/index.md b/versioned_docs/version-5.0/guides/git/index.md index 5a5f13983..1b1b19285 100644 --- a/versioned_docs/version-5.0/guides/git/index.md +++ b/versioned_docs/version-5.0/guides/git/index.md @@ -126,7 +126,7 @@ The following commands can be used to keep the your forked Moodle branches at yo ``` #!/bin/bash git fetch upstream -for BRANCH in MOODLE_{19..39}_STABLE MOODLE_{310..311}_STABLE MOODLE_{400..405}_STABLE main; do +for BRANCH in MOODLE_{19..39}_STABLE MOODLE_{310..311}_STABLE MOODLE_{400..405}_STABLE MOODLE_500_STABLE main; do git push origin refs/remotes/upstream/$BRANCH:refs/heads/$BRANCH done ```