[docs] Update git push script to check all branches#1585
Open
andrewnicols wants to merge 1 commit intomoodle:mainfrom
Open
[docs] Update git push script to check all branches#1585andrewnicols wants to merge 1 commit intomoodle:mainfrom
andrewnicols wants to merge 1 commit intomoodle:mainfrom
Conversation
✅ Deploy Preview for moodledevdocs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Git guide in the developer documentation so the example fork-sync script no longer relies on a hard-coded list of Moodle stable branches. It fits into the docs section that explains how contributors keep their GitHub forks aligned with upstream Moodle branches.
Changes:
- Replaces the hard-coded
MOODLE_*_STABLEbranch list in the sync script with a dynamically generated branch list. - Updates the
git pushexample to use${BRANCH}interpolation in the refspec.
| git fetch upstream | ||
| for BRANCH in MOODLE_{19..39}_STABLE MOODLE_{310..311}_STABLE MOODLE_{400..405}_STABLE main; do | ||
| git push origin refs/remotes/upstream/$BRANCH:refs/heads/$BRANCH | ||
| for BRANCH in main `git branch --list 'MOODLE_*_STABLE'` main; do |
| git fetch upstream | ||
| for BRANCH in MOODLE_{19..39}_STABLE MOODLE_{310..311}_STABLE MOODLE_{400..405}_STABLE main; do | ||
| git push origin refs/remotes/upstream/$BRANCH:refs/heads/$BRANCH | ||
| for BRANCH in main `git branch --list 'MOODLE_*_STABLE'` main; do |
Comment on lines
+130
to
+131
| for BRANCH in main `git branch --list 'MOODLE_*_STABLE'` main; do | ||
| git push origin refs/remotes/upstream/${BRANCH}:refs/heads/${BRANCH} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.