Never made an open source contribution before? Here is a quick rundown!
- Find an issue that you are interested in or a feature you would like to add.
- Fork this repository.
- Clone your fork to your local machine using
git clone https://github.com/github-username/repository-name.git
- Create a new branch for your fix using
git checkout -b branch-name
- Make changes for the issue you want to address or the feature you would like to add.
- Commit your changes. After you make a set of changes, use
git add insert-path-of-changed-files-here
to stage your changes andgit commit -m "description of changes"
to commit them. - Push your changes to your fork using
git push origin branch-name
- Submit a pull request to the upstream repository.
- Title the pull request with a short description of the changes made and the issue or bug number associated with your change.