Here are the steps you will need to follow to make your contributions.
If you don't have git on your machine, install it.
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. Also you'll need to fork the aashroy-client repository
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.
Open a terminal and run the following git command:
$ git clone <url you just copied>For example,
$ git clone https://github.com/decoding-apocalypse/aashroy-client.gitChange to the repository directory on your computer by,
$ cd aashroy-client#Create a branch using git checkout command
$ git checkout -b your-branch-nameAfter doing the required changes in the code, when you execute $ git status you'll see that there are some changes.
Add those changes to the branch you have just created using,
$ git add .Now commit those changes with a meaningful message,
$ git commit -m "commit message"$ git push origin your-branch-nameIf you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.
Now submit the pull request.
Soon I'll review your code and merge your changes. So you will be considered as a contributor!


