Welcome to our project! We love that you're interested in contributing, and we're happy to help you with your contribution.
-
Create a fork of this repository on GitHub under your own account.
-
Clone the repository to your local machine by running
$ git clone https://github.com/username/repo.git
replacing
username
andrepo
with your GitHub username and the name of the cloned repository, respectively. -
Create a new branch
$ git checkout -b my-new-branch
-
Make some awesome changes, then commit them by running:
$ git commit -m "Description of your changes"
If you leave off the
-m "Description of your changes"
part, you'll get a text editor where you can write a longer message if you like. -
Merge in any changes from the main repository that might have occurred since you made the fork. Fix any merge conflicts
$ git checkout master $ git pull upstream master $ git checkout my-new-branch $ git merge master
-
Push the branch:
$ git push -u origin my-new-branch
-
Submit a pull request on GitHub
-
Thanks for your contribution! One of the maintainers will get back to you soon with any suggested changes or feedback.