Thank you for considering giving feedback or contributing to this project.
There are two ways you can contribute to this repository:
- Creating or commenting on issues: If you spot a mistake or notice inconsistencies, please feel free to create a new issue here. You are also welcome to read through the issues submitted by others and to contribute to the discussion.
- Proposing changes: If you are familiar with how GitHub works (or are willing to try), you can submit a pull request with any additions or modifications to the files in this repository.
For more details on contributing via GitHub, read through the sections below.
To open issues or pull requests, you will need to create an account on https://github.com/. For pull request, you will also need to have set up Git on your local machine.
Issues are places to track ideas, enhancements, tasks, and to report errors or bugs. To create a new issue:
- Go to the issues tab.
- Search the already posted issues to see if the feedback you are about to give is already posted.
- If your feedback has not already been brought up, please press the green New Issue button to post a new issue.
Changes or additions to files are made via pull requests or PRs. For major changes, please open an issue first to discuss what you would like to change.
To create a pull request, you will need to:
- Create a fork of this repository. Forking a repository allows you to freely experiment with changes without affecting the original project.
- Clone your fork to your local machine.
git clone https://github.com/<YOUR-GITHUB-USERNAME>/mixtape.git
- Create and switch to a new branch. Make your changes. Commit, and push.
git checkout -b new-branch
# Make your changes
git add "file-that-changed.do"
git commit -m "The commit message"
git push origin new-branch
- Navigate back to GitHub. You will see a yellow banner near the top of your repository. Click on Compare & Pull Request. If your pull request closes an issue, add
Fixes #<ISSUE-NUMBER>
to the body of the PR so the issue is automatically closed once the PR is accepted.