BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
75e90cb4
Commit
75e90cb4
authored
May 26, 2014
by
dosire
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Push to all remotes doc.
parent
2a8aa742
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
2 deletions
+35
-2
README.md
doc/release/README.md
+6
-2
master.md
doc/release/master.md
+29
-0
No files found.
doc/release/README.md
View file @
75e90cb4
+
[
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 @
75e90cb4
# How to push GitLab CE master branch to all remotes.
Distribution to other repo's is done by Dmitriy if there is no rush. If a GitLab B.V. person wants to do it here are the instructions.
## Add this to `.bashrc`
```
bash
gpa
()
{
git push origin
$1
&&
git push gh
$1
&&
git push public
$1
}
```
## Then add remotes to your local repo
```
bash
cd
myrepo
git remote add origin git@dev.gitlab.org:gitlab/gitlabhq.git
git remote add gh git@github.com:gitlabhq/gitlabhq.git
git remote add public git@gitlab.com:gitlab-org/gitlab-ce.git
```
## Pushto all remotes
```
bash
gpa master
```
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