Commit 56549c2b9e6df033ff66e0d2a0b1cd27ce587d9b
1 parent
10fc0aea
Exists in
master
and in
9 other branches
Add a `git pull` step to the release process
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
doc/release.md
... | ... | @@ -6,6 +6,13 @@ Our main goal is to make it clear which version of GitLab is in an omnibus packa |
6 | 6 | |
7 | 7 | - Pick a tag of GitLab to package (e.g. `v6.6.0`). |
8 | 8 | - Create a release branch in omnibus-gitlab (e.g. `6-6-stable`). |
9 | +- If the release branch already exists, for instance because you are doing a | |
10 | + patch release, make sure to pull the latest changes to your local machine. | |
11 | + | |
12 | +``` | |
13 | +git pull https://gitlab.com/gitlab-org/omnibus-gitlab.git 6-6-stable # existing release branch | |
14 | +``` | |
15 | + | |
9 | 16 | - Change [the gitlab-rails version in omnibus-gitlab]. In our example that would be |
10 | 17 | `default_version '490f99d45e0f610e88505ff0fb2dc83a557e22c5' # 6.6.0`. |
11 | 18 | - Change [the gitlab-shell version] if necessary, for example | ... | ... |