File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change 66>
77> -MGatner, kenjis
88
9- ## [ Minor version only] Merge minor version branch into develop
9+ ## Merge ` develop ` branch into next minor version branch ` 4.x `
10+
11+ Before starting release process, if there are commits in ` develop ` branch that
12+ are not merged into ` 4.x ` branch, merge them. This is because if conflicts occur,
13+ merging will take time.
14+
15+ ``` console
16+ git fetch upstream
17+ git switch 4.x
18+ git merge upstream/4.x
19+ git merge upstream/develop
20+ git push upstream HEAD
21+ ```
22+
23+ ## [ Minor version only] Merge minor version branch into ` develop `
1024
1125If you release a new minor version.
1226
@@ -149,15 +163,15 @@ Work off direct clones of the repos so the release branches persist for a time.
149163 git merge origin/master
150164 git push origin HEAD
151165 ```
152- * [ ] Update the next minor upgrade branch `4.x`:
166+ * [ ] Update the next minor version branch `4.x`:
153167 ```console
154168 git fetch origin
155169 git checkout 4.x
156170 git merge origin/4.x
157171 git merge origin/develop
158172 git push origin HEAD
159173 ```
160- * [ ] [Minor version only] Create the next minor upgrade branch `4.x`:
174+ * [ ] [Minor version only] Create the new next minor version branch `4.x`:
161175 ```console
162176 git fetch origin
163177 git switch develop
You can’t perform that action at this time.
0 commit comments