How to Contribute
Last updated: 10/20/2018
Last updated: 10/20/2018
You can find our repository by checking our GitHub and selecting the project you want to contribute to. Or you can just follow these links directly to the corresponding projects:
Fork the repository by clicking the "Fork" button on the top, right corner of the page. This will create a copy of the repository in your account.
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}"
Change to the repository directory on your computer (if you are not already there):
cd "project name"
Now create a branch using the git checkout command:
git checkout -b <your-new-branch-name>
Now open the project in your favorite code editor and make the required changes. You can use the git status command to check the changes.
Once you have made the changes, commit them.
Push your changes using the command git push:
git push origin add-your-branch-name
If you go to your repository on GitHub, you will see a Compare & pull request button. Click on that button.
Now submit the pull request. After that, our team will review your code and merge it if it passes the tests.
You have successfully made a contribution to this project. :>