hamstar / legislat0r

An open source system for crowdsourcing creation and analysis of legislature
9 stars 1 forks source link

Github Flow for repository management #32

Open hamstar opened 12 years ago

hamstar commented 12 years ago

See: http://scottchacon.com/2011/08/31/github-flow.html

Its pretty easy:

  1. Anything in the master branch is deployable
  2. To work on something new, create a descriptively named branch off of master (ie: new-oauth2-scopes)
  3. Commit to that branch locally and regularly push your work to the same named branch on the server
  4. When you need feedback or help, or you think the branch is ready for merging, open a pull request
  5. After someone else has reviewed and signed off on the feature, you can merge it into master
  6. Once it is merged and pushed to ‘master’, you can and should deploy immediately