Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessio Caiazza <acaiazza@gitlab.com>2019-08-28 12:40:41 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2019-08-28 12:40:41 +0300
commit95eb6930f030af0f5f1cecb734dc283d1735e0c6 (patch)
tree4ce8217411402e3258b55410893c284ad18a8854
parentf6229d63d67aa30b6c8649b2524cd95f186c0692 (diff)
parentf32248f34f9e589b38ba59d494d5b24c933aa387 (diff)
Merge branch 'patch-1' into 'master'
Fix git arguments order in PROCESS.md See merge request gitlab-org/gitlab-pages!174
-rw-r--r--PROCESS.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/PROCESS.md b/PROCESS.md
index 8efbc9f7..2a5fe6ea 100644
--- a/PROCESS.md
+++ b/PROCESS.md
@@ -25,8 +25,8 @@ any changes have been made). To do so:
```shell
git checkout -b X-Y-stable master # MAJOR.MINOR
- git push X-Y-stable https://gitlab.com/gitlab-org/gitlab-pages.git
- git push X-Y-stable https://dev.gitlab.org/gitlab/gitlab-pages.git
+ git push https://gitlab.com/gitlab-org/gitlab-pages.git X-Y-stable
+ git push https://dev.gitlab.org/gitlab/gitlab-pages.git X-Y-stable
```
1. Review the list of changes since the last release and create a changelog
@@ -38,8 +38,8 @@ any changes have been made). To do so:
```shell
git fetch origin 1-0-stable
git tag -a -s -m "Release v1.0.0" v1.0.0 origin/1-0-stable
- git push v1.0.0 https://gitlab.com/gitlab-org/gitlab-pages.git
- git push v1.0.0 https://dev.gitlab.org/gitlab/gitlab-pages.git
+ git push https://gitlab.com/gitlab-org/gitlab-pages.git v1.0.0
+ git push https://dev.gitlab.org/gitlab/gitlab-pages.git v1.0.0
```
1. Create a merge request against [GitLab](https://gitlab.com/gitlab-org/gitlab-ce) to update `GITLAB_PAGES_VERSION`