change backport branch creation steps
This commit is contained in:
parent
404589d9b5
commit
88b3109137
1 changed files with 5 additions and 5 deletions
|
@ -5,14 +5,14 @@ This document describes the process for releasing a new version of Electron.
|
||||||
## Create a backport branch
|
## Create a backport branch
|
||||||
|
|
||||||
If you're about release a new major or minor version of Electron like `1.8.0`,
|
If you're about release a new major or minor version of Electron like `1.8.0`,
|
||||||
`1.9.0`, or `2.0.0`, first create a branch of `master` for later backports:
|
`1.9.0`, or `2.0.0`, first create a branch from the most recent minor release
|
||||||
|
for later backports:
|
||||||
|
|
||||||
Assuming you're about to publish `1.8.0`:
|
Assuming you're about to publish `1.8.0`, and the highest `1.7` release was
|
||||||
|
`1.7.6`:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git checkout master
|
git checkout -b 1-7-x v1.7.6
|
||||||
git pull
|
|
||||||
git checkout -b 1-7-x
|
|
||||||
git push origin HEAD
|
git push origin HEAD
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue