aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorEric B Merritt <[email protected]>2013-04-09 15:49:01 -0700
committerEric B Merritt <[email protected]>2013-04-09 16:40:53 -0700
commit10eb471cda3609156e21af93e04522543fb674c0 (patch)
tree963b2d8202a00b11febee4b5516d7884fdcf37b0 /CONTRIBUTING.md
parentf8fddac81709a4f14b32596741bfbb1b0c68dd55 (diff)
downloadrelx-10eb471cda3609156e21af93e04522543fb674c0.tar.gz
relx-10eb471cda3609156e21af93e04522543fb674c0.tar.bz2
relx-10eb471cda3609156e21af93e04522543fb674c0.zip
Update contributing document to new branch layout
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md17
1 files changed, 5 insertions, 12 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index ea4ef0d..e63ac46 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -17,12 +17,6 @@ your computer. The remote repository `origin` refers to your fork of the
project's repository that you can find in your GitHub account. The remote
repository `upstream` refers to the official repository for this project.
-Following this document will ensure prompt merging of your work in the
-`next` branch of the project. The `master` branch has `next` merged to
-it when we are satisfied with stability of the branch and any new
-features. Please submit all pull requests to the `next` branch and
-base your work off the `upstream` `next` branch.
-
Reporting bugs
--------------
@@ -63,7 +57,7 @@ To update the current branch to `upstream`, you can use the following commands.
``` bash
$ git fetch upstream
-$ git rebase upstream/next
+$ git rebase upstream/master
```
It may ask you to stash your changes, in which case you stash with:
@@ -82,12 +76,11 @@ You SHOULD use these commands both before working on your patch and before
submitting the pull request. If conflicts arise it is your responsability
to deal with them.
-You MUST create a new branch for your work. First, ensure you are on `next`.
-You MUST update `next` to `upstream` before doing anything. Then create a
-new branch `$BRANCH` and switch to it.
+You MUST create a new branch for your work. First make sure you have
+'fetched' `master`
``` bash
-$ git checkout -b $BRANCH
+$ git checkout -b $BRANCH upstream/master
```
You MUST use a an insightful branch name.
@@ -142,5 +135,5 @@ $ git push origin $BRANCH
```
You MUST then submit the pull request by using the GitHub interface to
-the `next` branch. You SHOULD provide an explanatory message and refer
+the `master` branch. You SHOULD provide an explanatory message and refer
to any previous ticket related to this patch.