Skip to content

Latest commit

 

History

History
27 lines (26 loc) · 676 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (26 loc) · 676 Bytes

Contributing Guide

  • Fork the repo
  • Check out a new branch based and name it to what you intend to do:
    • Example:
      $ git checkout -b FEATURE
      
      If you get an error, you may need to fetch first by using
      $ git remote update && git fetch
      
    • Use one branch per fix / feature
  • Commit your changes
    • Please provide a git message that explains what you've done.
    • Commit to the forked repository.
    • Example:
      $ git commit -am 'Add some feature'
      
  • Push to the branch
    • Example:
      $ git push origin FEATURE
      
  • Make a pull request