Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 809 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (14 loc) · 809 Bytes

Contributing Guidelines

Sample Workflow

  1. Go to the Project board.

  2. Find an issue to work on

    • The issues near the top are higher priority
  3. Checkout a new branch to work on

    • git checkout master - Checkout the master branch
    • git pull -r - Update master by rebasing
    • git checkout -b the-issue-im-working-on - Checkout a new branch to work on your isue
  4. Make your changes and don't forget to commit often

  5. Push your branch to the remote repository

    • git push -u origin the-issue-im-working-on
  6. Get on GitHub and create a pull request.