Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 1.08 KB

CONTRIBUTE.md

File metadata and controls

44 lines (37 loc) · 1.08 KB

Contribute

Thanks for being interested in our projects! Here is a quick guide that shows you how to contribute.

Fork the project

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.

Clone the repository

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

Create a new branch

Before adding a new feature you need to create a new branch:

git checkout -b <branch-name>

Committing changes

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"

Push changes to GitHub

To push your changes to GitHub do:

git push origin <your-branch-name>

Create pull request

Now you should see a "Compare & pull request" button in your forked repository. Click that and submit the pull request!