-
Fork the repo and clone it to your development machine.
-
Add our repo as the upstream remote.
git remote add upstream <url to git file for this repo>
-
Branch from master, using a prefix:
- bugfix/your-branch
- feature/your-branch
git checkout -b 'prefix/your-branch-name' master
-
Commit changes with nice commit messages.
-
Update your branch from "upstream/master".
-
Submit a pull request directly to master. Include a description of your changes.
-
After the code has been reviewed and accepted, it will be merged.
Thanks for contributing!