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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-26 22:43:51 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-26 22:43:51 +0400
commit7ad5fb53ac4e14b22684a0d4904ccf724fd4e082 (patch)
tree71156531cebaabf79b4b93d76ac3d548ae72543b
parentf48658813ca86464aa76de4ff906c1ef47ddd863 (diff)
parentfe10f37199a04b92dd5bf2b713d49849491f9dfc (diff)
Merge branch 'push-release-doc' into 'master'
Push release doc
-rw-r--r--doc/release/README.md8
-rw-r--r--doc/release/master.md31
2 files changed, 37 insertions, 2 deletions
diff --git a/doc/release/README.md b/doc/release/README.md
index 22510be3f18..d53720acbd4 100644
--- a/doc/release/README.md
+++ b/doc/release/README.md
@@ -1,2 +1,6 @@
-+ [Monthly](monthly.md)
-+ [Security](security.md)
+GitLab has the following updates:
+
++ [Monthly release](monthly.md), every month on the 22nd.
++ [Patch release](patch.md), if there are serious regressions.
++ [Security](security.md), for security problems.
++ [Master](master.md), update process for the master branch.
diff --git a/doc/release/master.md b/doc/release/master.md
new file mode 100644
index 00000000000..bed5692d0a2
--- /dev/null
+++ b/doc/release/master.md
@@ -0,0 +1,31 @@
+# How to push GitLab CE master branch to all remotes.
+
+Distribution to other repo's is done by the lead developer if there is no rush.
+This happens a few times per workday on average.
+If a GitLab B.V. person wants to do it here are the instructions.
+
+## Add this to `.bashrc` or [your dotfiles](https://github.com/dosire/dotfiles/commit/52803ce3ac60d57632164b7713ff0041e86fa26c)
+
+```bash
+gpa ()
+{
+ git push origin ${1:-master} && git push gh ${1:-master} && git push gl ${1:-master}
+}
+```
+
+## Then add remotes to your local repo
+
+```bash
+cd my-gitlab-ce-repo
+
+git remote add origin git@dev.gitlab.org:gitlab/gitlabhq.git
+git remote add gh git@github.com:gitlabhq/gitlabhq.git
+git remote add gl git@gitlab.com:gitlab-org/gitlab-ce.git
+```
+
+## Push to all remotes
+
+```bash
+gpa
+```
+