Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 585 Bytes

CONTRIBUTING.md

File metadata and controls

24 lines (15 loc) · 585 Bytes

Contributing

  1. Update local master branch:

    $ git checkout master
    $ git pull upstream master
    
  2. Create feature branch:

    $ git checkout -b feature-x
    
  3. Make one or more atomic commits, and ensure that each commit has a descriptive commit message. Commit messages should be line wrapped at 72 characters.

  4. Run npm test, and address any errors. Preferably, fix commits in place using git rebase or git commit --amend to make the changes easier to review.

  5. Push:

    $ git push origin feature-x
    
  6. Open a pull request.