Skip to content

Latest commit

 

History

History
75 lines (46 loc) · 2.35 KB

File metadata and controls

75 lines (46 loc) · 2.35 KB

To contribute to the project

Here are the steps you will need to follow to make your contributions.

fork this repo

If you don't have git on your machine, install it.

Fork this repository

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

clone the repo

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.git

Create a branch

Change to the repository directory on your computer by,

$ cd aashroy-client
#Create a branch using git checkout command
$ git checkout -b your-branch-name

Make necessary changes and commit those changes

After 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"

Push changes into GitHub

$ git push origin your-branch-name

Submit your changes for review

If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.

create a pull request

Now submit the pull request.

send pull request

Soon I'll review your code and merge your changes. So you will be considered as a contributor!