From 217c67e96fcdb3c32f91e0ec3302f0939394eb83 Mon Sep 17 00:00:00 2001 From: Leon Stringer Date: Tue, 13 May 2025 09:11:56 +0100 Subject: [PATCH] Update repo update script for 500 branch --- versioned_docs/version-5.0/guides/git/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```