Commit 103c8c1b15c51e4a75def36ea7d0fd32722eff1f
1 parent
80952e4c
Exists in
master
and in
17 other branches
Remove distracting 'Example' comments
Showing
1 changed file
with
0 additions
and
6 deletions
Show diff stats
doc/release.md
| ... | ... | @@ -10,7 +10,6 @@ Our main goal is to make it clear which version of GitLab is in an omnibus packa |
| 10 | 10 | - Commit the new version to the release branch |
| 11 | 11 | |
| 12 | 12 | ```shell |
| 13 | -# Example: | |
| 14 | 13 | git commit -m 'Pin GitLab to v6.6.0' config/software/gitlab-rails.rb |
| 15 | 14 | ``` |
| 16 | 15 | |
| ... | ... | @@ -18,14 +17,12 @@ git commit -m 'Pin GitLab to v6.6.0' config/software/gitlab-rails.rb |
| 18 | 17 | GitLab tag `v6.6.0` becomes omnibus-gitlab tag `6.6.0.omnibus`. |
| 19 | 18 | |
| 20 | 19 | ```shell |
| 21 | -# Example: | |
| 22 | 20 | git tag -a 6.6.0.omnibus -m 'Pin GitLab to v6.6.0' |
| 23 | 21 | ``` |
| 24 | 22 | |
| 25 | 23 | - Push the branch and the tag to the main repository. |
| 26 | 24 | |
| 27 | 25 | ```shell |
| 28 | -# Example: | |
| 29 | 26 | git push origin 6-6-stable 6.6.0.omnibus |
| 30 | 27 | ``` |
| 31 | 28 | |
| ... | ... | @@ -34,7 +31,6 @@ git push origin 6-6-stable 6.6.0.omnibus |
| 34 | 31 | - Check out the release branch of omnibus-gitlab. |
| 35 | 32 | |
| 36 | 33 | ```shell |
| 37 | -# Example | |
| 38 | 34 | git fetch |
| 39 | 35 | git checkout 6-6-stable |
| 40 | 36 | ``` |
| ... | ... | @@ -42,14 +38,12 @@ git checkout 6-6-stable |
| 42 | 38 | - Check the version with `git describe`. |
| 43 | 39 | |
| 44 | 40 | ```shell |
| 45 | -# Example | |
| 46 | 41 | git describe # Should start with 6.6.0.omnibus |
| 47 | 42 | ``` |
| 48 | 43 | |
| 49 | 44 | - Build a package with version timestamps disabled. |
| 50 | 45 | |
| 51 | 46 | ```shell |
| 52 | -# Example | |
| 53 | 47 | OMNIBUS_APPEND_TIMESTAMP=0 bin/omnibus build project gitlab |
| 54 | 48 | ``` |
| 55 | 49 | ... | ... |