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,7 +10,6 @@ Our main goal is to make it clear which version of GitLab is in an omnibus packa | ||
10 | - Commit the new version to the release branch | 10 | - Commit the new version to the release branch |
11 | 11 | ||
12 | ```shell | 12 | ```shell |
13 | -# Example: | ||
14 | git commit -m 'Pin GitLab to v6.6.0' config/software/gitlab-rails.rb | 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,14 +17,12 @@ git commit -m 'Pin GitLab to v6.6.0' config/software/gitlab-rails.rb | ||
18 | GitLab tag `v6.6.0` becomes omnibus-gitlab tag `6.6.0.omnibus`. | 17 | GitLab tag `v6.6.0` becomes omnibus-gitlab tag `6.6.0.omnibus`. |
19 | 18 | ||
20 | ```shell | 19 | ```shell |
21 | -# Example: | ||
22 | git tag -a 6.6.0.omnibus -m 'Pin GitLab to v6.6.0' | 20 | git tag -a 6.6.0.omnibus -m 'Pin GitLab to v6.6.0' |
23 | ``` | 21 | ``` |
24 | 22 | ||
25 | - Push the branch and the tag to the main repository. | 23 | - Push the branch and the tag to the main repository. |
26 | 24 | ||
27 | ```shell | 25 | ```shell |
28 | -# Example: | ||
29 | git push origin 6-6-stable 6.6.0.omnibus | 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,7 +31,6 @@ git push origin 6-6-stable 6.6.0.omnibus | ||
34 | - Check out the release branch of omnibus-gitlab. | 31 | - Check out the release branch of omnibus-gitlab. |
35 | 32 | ||
36 | ```shell | 33 | ```shell |
37 | -# Example | ||
38 | git fetch | 34 | git fetch |
39 | git checkout 6-6-stable | 35 | git checkout 6-6-stable |
40 | ``` | 36 | ``` |
@@ -42,14 +38,12 @@ git checkout 6-6-stable | @@ -42,14 +38,12 @@ git checkout 6-6-stable | ||
42 | - Check the version with `git describe`. | 38 | - Check the version with `git describe`. |
43 | 39 | ||
44 | ```shell | 40 | ```shell |
45 | -# Example | ||
46 | git describe # Should start with 6.6.0.omnibus | 41 | git describe # Should start with 6.6.0.omnibus |
47 | ``` | 42 | ``` |
48 | 43 | ||
49 | - Build a package with version timestamps disabled. | 44 | - Build a package with version timestamps disabled. |
50 | 45 | ||
51 | ```shell | 46 | ```shell |
52 | -# Example | ||
53 | OMNIBUS_APPEND_TIMESTAMP=0 bin/omnibus build project gitlab | 47 | OMNIBUS_APPEND_TIMESTAMP=0 bin/omnibus build project gitlab |
54 | ``` | 48 | ``` |
55 | 49 |