diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 62bc19d..f111fc1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,17 +8,21 @@ Before you start, please take a moment to read this guide to understand how you 1. **Fork the Repository:** Click the "Fork" button on the top right corner of this repository. This will create a copy of the project in your GitHub account. -2. **Clone the Repository:** Clone the forked repository to your local machine using the following command (replace `[your-username]` with your GitHub username): + - ```sh - git clone https://github.com/[your-username]/HacktoberfestProjectsHub.git - ``` +2. **Clone the Repository:** Once the fork process is completed, you'll be redirected to your forked repository page. Now, clone the forked repository to your local machine using the following command (replace `[your-username]` with your GitHub username): + +```sh +git clone https://github.com/[your-username]/HacktoberfestProjectsHub.git +``` + 3. **Create a Branch:** Create a new branch for your contributions: ```sh git checkout -b feature/your-feature-name ``` + 4. **Make Changes:** Make your contributions to the project. You can add new features, fix bugs, improve documentation, or suggest enhancements. @@ -27,6 +31,7 @@ Before you start, please take a moment to read this guide to understand how you ```sh git commit -m "Add feature/fix/enhancement: Description of your changes" ``` + 6. **Push Changes:** Push your changes to your forked repository: @@ -34,12 +39,18 @@ Before you start, please take a moment to read this guide to understand how you git push origin feature/your-feature-name ``` + + 7. **Submit a Pull Request:** Open a Pull Request (PR) to the `main` branch of the original repository. In the PR description, explain the purpose and details of your changes. + + 8. **Review and Feedback:** After submitting your PR, maintainers and other contributors may review your changes and provide feedback. Be ready to address any suggested improvements. 9. **Merge:** Once your PR is approved, it will be merged into the main repository. + + 10. **Celebrate:** Your contribution is now part of HacktoberfestProjectsHub! 🎉 ## Guidelines diff --git a/src/images/CONTRIBUTING/PR.png b/src/images/CONTRIBUTING/PR.png new file mode 100644 index 0000000..8731a39 Binary files /dev/null and b/src/images/CONTRIBUTING/PR.png differ diff --git a/src/images/CONTRIBUTING/branch.png b/src/images/CONTRIBUTING/branch.png new file mode 100644 index 0000000..76f4a84 Binary files /dev/null and b/src/images/CONTRIBUTING/branch.png differ diff --git a/src/images/CONTRIBUTING/clone.png b/src/images/CONTRIBUTING/clone.png new file mode 100644 index 0000000..518f1ce Binary files /dev/null and b/src/images/CONTRIBUTING/clone.png differ diff --git a/src/images/CONTRIBUTING/commit.png b/src/images/CONTRIBUTING/commit.png new file mode 100644 index 0000000..9d8954f Binary files /dev/null and b/src/images/CONTRIBUTING/commit.png differ diff --git a/src/images/CONTRIBUTING/fork.png b/src/images/CONTRIBUTING/fork.png new file mode 100644 index 0000000..a51f375 Binary files /dev/null and b/src/images/CONTRIBUTING/fork.png differ diff --git a/src/images/CONTRIBUTING/push.png b/src/images/CONTRIBUTING/push.png new file mode 100644 index 0000000..439a9c0 Binary files /dev/null and b/src/images/CONTRIBUTING/push.png differ