HacktoberFest is an annual celebration of open-source software in which individuals from all around the world come together to contribute to open-source projects. It's a fantastic opportunity to learn, collaborate, and support the community.
Before you start contributing, please follow these guidelines:
- Step 1 - Browse the Issues section of this repository to find tasks, bugs, or features you'd like to work on.
- Step 2 - If you find an issue that interests you, please comment on the issue to discuss your intention to work on it. This helps prevent duplicate efforts and ensures that your contribution aligns with the project's goals.
If you're new to version control or unfamiliar with it, please refer to the Git Cheat Sheet as a reference to the following steps:
To get started, fork this repository to your GitHub account. This will create a copy of the repository that you can work on.
Clone the forked repository to your local machine using Git. This will allow you to make changes and create pull requests.
Before making any changes, create a new branch for your contribution to avoid conflicts with the main branch. You can do this using the following Git command:
git checkout -b my-new-feature
Now that you have your feature branch, you can start working on your contribution. Be sure to follow the discussion on the issue you're addressing and adhere to the project's coding conventions and guidelines.
Once you've made your changes, add them to your local repository. You can do this using Git commands or a Git client.
When you're ready to submit your contributions, create a Pull Request (PR). Be sure to include a descriptive title and a detailed description of your changes in the PR. Your contributions will be reviewed by the project maintainers.