Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.14 KB

CONTRIBUTING.md

File metadata and controls

41 lines (25 loc) · 1.14 KB

How to Contribute

Submitting Changes

We follow the git-flow development methodology. At a high level, we work on features in individual "feature branches" based on the develop branch. Then, when it's time to cut a release, we merge develop back into master.

See "Using git-flow to automate your git branching workflow" for a great introduction.

And, consider installing the git-flow extension to Git.

  • Step One: Create a feature branch, based on develop:

    With the git-flow extension:

    $ git flow feature start myinitials/myfeature

    With vanilla Git:

    $ git checkout -b feature/myinitials/myfeature develop
  • Step Two: Publish your branch to GitHub:

    With the git-flow extension:

    $ git flow feature publish

    With vanilla Git:

    $ git push -u origin feature/myinitials/myfeature
  • Step Three: When you are ready to submit your changes, open a pull request against develop.