READ CODE OF CONDUCT Read the Code of Conduct before starting contributing.
- Maintain a proper project folder structure
- Follow proper naming conventions
- Read the instructions - Hacktober fest 2022
-
If you are new to Git and GitHub, it is advisable that you go through GitHub For Beginners before moving to ahead.
-
Pick any issue you want to work on from the issues, discuss with maintainer on issue and then start.
-
Fork the project on GitHub. Help Guide to Fork a Repository.
After a sucessful fork, you'll see a copy of this repo in your own account.
-
Clone the project.
git clone https://github.com/clubgamma/task-tracker
-
Create a branch specific to the issue you are working on.
git checkout -b branch-name
(Take inspiration for branch name from the issue you are working on!)
-
Open up the project in your favorite text editor.
Select the file you want to contribute to, and make your changes.
If you are making changes to the
README.md
file, you would need to have Markdown knowledge. Visit here to read about GitHub Markdown and here to practice. -
Add your modified files to git, How to Add, Commit, Push, and Go.
You can also add all unstaged files using:
git add .
Note: using a
git add .
will automatically add all files. You can do agit status
to see your changes, but do it beforegit add
. -
Commit your changes using a descriptive commit message.
git commit -m "Brief Description of Commit"
-
Push your commits to your GitHub Fork:
git push -u origin branch-name
-
Submit a pull request.
- Create a pull-request by clicking the button
- Add the link of the issue you are addressing in the pull request
- Mark the pull request as Ready for Review (If you forget this step then your pull request won't be counted) if you are working in draft pull request
Also add the below 2 lines in the description. It is compulsory for sucessful submission.
-
I have read the Code Of Conduct.
-
I have followed all the steps of submission properly.
Woohoo!! Congratulations on making your open source contribution🎉🎉
Wait for some time to get your PR merged by our team