diff options
| author | Tres Seaver <tseaver@palladion.com> | 2015-11-12 08:47:16 -0500 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2015-11-12 08:47:16 -0500 |
| commit | b4c96d2892d8271b300b1920e3ce5d2c0eae588b (patch) | |
| tree | 7c0bd810af0d239f0513653eb29eba6e1a08f6a2 /contributing.md | |
| parent | e99cd355140258b7cd4cd9c1a83fd3ada1eb2b04 (diff) | |
| parent | 47162533af84bb8d26db6d1c9ba1e63d70e9070f (diff) | |
| download | pyramid-b4c96d2892d8271b300b1920e3ce5d2c0eae588b.tar.gz pyramid-b4c96d2892d8271b300b1920e3ce5d2c0eae588b.tar.bz2 pyramid-b4c96d2892d8271b300b1920e3ce5d2c0eae588b.zip | |
Merge branch 'master' into feature/alchemy-scaffold-update
Conflicts:
docs/tutorials/wiki2/basiclayout.rst
Diffstat (limited to 'contributing.md')
| -rw-r--r-- | contributing.md | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/contributing.md b/contributing.md index 6ee28703c..c2d2ecefd 100644 --- a/contributing.md +++ b/contributing.md @@ -3,7 +3,9 @@ Contributing All projects under the Pylons Projects, including this one, follow the guidelines established at [How to -Contribute](http://www.pylonsproject.org/community/how-to-contribute). +Contribute](http://www.pylonsproject.org/community/how-to-contribute) and +[Coding Style and +Standards](http://docs.pylonsproject.org/en/latest/community/codestyle.html). You can contribute to this project in several ways. @@ -13,11 +15,28 @@ You can contribute to this project in several ways. Flow](https://guides.github.com/introduction/flow/index.html) describes the workflow process and why it's a good practice. When submitting a pull request, sign - [CONTRIBUTORS.txt](https://github.com/Pylons/pyramid/blob/master/CONTRIBUTORS. -txt) + [CONTRIBUTORS.txt](https://github.com/Pylons/pyramid/blob/master/CONTRIBUTORS.txt) if you have not yet done so. * Join the IRC channel #pyramid on irc.freenode.net. +Git Branches +------------ +Git branches and their purpose and status at the time of this writing are +listed below. + +* [master](https://github.com/Pylons/pyramid/) - The branch on which further +development takes place. The default branch on GitHub. +* [1.6-branch](https://github.com/Pylons/pyramid/tree/1.6-branch) - The branch +to which further development on master should be backported. This is also a +development branch. +* [1.5-branch](https://github.com/Pylons/pyramid/tree/1.5-branch) - The branch +classified as "stable" or "latest". Actively maintained. +* [1.4-branch](https://github.com/Pylons/pyramid/tree/1.4-branch) - The oldest +actively maintained and stable branch. + +Older branches are not actively maintained. In general, two stable branches and +one or two development branches are actively maintained. + Prerequisites ------------- @@ -38,7 +57,7 @@ System](http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/install.ht 1. Fork the repo on GitHub by clicking the [Fork] button. 2. Clone your fork into a workspace on your local machine. - git@github.com:<username>/pyramid.git + git clone git@github.com:<username>/pyramid.git 3. Add a git remote "upstream" for the cloned fork. @@ -65,8 +84,9 @@ System](http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/install.ht load the built documentation in the `/_build/html/` directory in a web browser. -6. From this point forward, follow the typical git workflow. Start by pulling - from the upstream to get the most current changes. +6. From this point forward, follow the typical [git + workflow](https://help.github.com/articles/what-is-a-good-git-workflow/). + Start by pulling from the upstream to get the most current changes. git pull upstream master |
