Skip to content

Commit f380460

Browse files
authored
Merge pull request #8382 from kenjis/update-RELEASE.md
docs: update RELEASE.md
2 parents ed6e0d0 + 4f4b969 commit f380460

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

admin/RELEASE.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@
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

1125
If 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

0 commit comments

Comments
 (0)