Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
7ad5fb53
Commit
7ad5fb53
authored
May 26, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'push-release-doc' into 'master'
Push release doc
parents
f4865881
fe10f371
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
2 deletions
+37
-2
doc/release/README.md
doc/release/README.md
+6
-2
doc/release/master.md
doc/release/master.md
+31
-0
No files found.
doc/release/README.md
View file @
7ad5fb53
+
[
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.
doc/release/master.md
0 → 100644
View file @
7ad5fb53
# 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
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment