Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 930 Bytes

CONTRIBUTING.md

File metadata and controls

15 lines (12 loc) · 930 Bytes

Contributing

Github Workflow

Contributions are always welcome! Be sure to follow the github workflow when contributing to this project:

  • Create an issue, or comment on an issue to indicate what you are working on. This avoids work duplication.
  • Fork the repository and clone to your local machine
  • You should already be on the default branch master - if not, check it out (git checkout master)
  • Create a new branch for your feature/fix git checkout -b my-new-feature)
  • Write your feature/fix
  • Stage the changed files for a commit (git add .)
  • Commit your files with a useful commit message (example) (git commit)
  • Push your new branch to your GitHub Fork (git push origin my-new-feature)
  • Visit this repository in GitHub and create a Pull Request.