Thank you for investing your time in contributing to our project! In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.
You can contribute to this project by following these simple steps:
Fork this repo by clicking on fork button at top-right corner.
Clone this repo
https://github.com/your_username/repo_name.git
Make the changes that you want.
Create a new branch
git branch branch_name
git checkout branch_name
Save changes and Commit changes
git add .
git commit -m "add message"
Make PR
git push origin branch_name
Then go to github repo, there will be automatically a button generated to create pull request, just click that button.
Congratulations🎉, you have successfully created the PR.