From 91a3c0fa446c02157f0efa8702f3f4d3476dda2c Mon Sep 17 00:00:00 2001 From: Leon Stringer Date: Wed, 3 Sep 2025 13:04:37 +0200 Subject: [PATCH] Add 500 branch to fork update script This change is already in the 5.0 dev docs. --- docs/guides/git/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/git/index.md b/docs/guides/git/index.md index 5a5f139830..1b1b192859 100644 --- a/docs/guides/git/index.md +++ b/docs/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 ```