First of all, Thanks for taking the time to contribute! 💜
All types of contributions are encouraged and valued. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for the maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
Here are the categories that you may contribute to:
Each category contains specific kind of programs/scripts, visit them to know more about them individually!
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.
In your cloned repository click on the green code button and copy the link shown.
Clone your forked repository by running the git clone command with you copied link on you command line.
git clone <url_you_just_copied>
Do the following command to get into the repository directory:
cd <your_directory>
Then create your own branch in the repo using:
git checkout -b <your_branch_name>
You can see what all you changes using the git status
command.
Add all your changes to you branch using the git add .
command
Switch to the main branch using this command:
git checkout master
Push all your changes to GitHub using the command:
git push --set-upstream origin <your_branch_name>