Thanks for being interested in our projects! Here is a quick guide that shows you how to contribute.
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
To have a copy of the project in your machine, you can simply run:
git clone https://github.com/<your-github-username>/yaguide.git
Cd into the repository:
cd yaguide
Before adding a new feature you need to create a new branch:
git checkout -b <branch-name>
Once you have done all the necessary changes you can add them to the staging area:
git add .
And commit the changes:
git commit -m "Commit message"
To push your changes to GitHub do:
git push origin <your-branch-name>
Now you should see a "Compare & pull request" button in your forked repository. Click that and submit the pull request!