Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Latest commit

 

History

History
73 lines (60 loc) · 3.31 KB

CONTRIBUTING.md

File metadata and controls

73 lines (60 loc) · 3.31 KB

Contributing Guidelines

Welcome to Hacktoberfest 2024! 🎉 We're excited to help beginners make their first successful pull request and contribute to open source.

Eligibility Criteria 🚫

  • No duplicate programming questions.
  • Star and Fork this repository.
  • Complete the data.json file after your task.

Tasks 🌈

  1. Beginner Level 📁
    • Task 1: Add Your Program Question and Solution 😇
      • Before you start, please star ⭐ this repo and open an issue related to your programming question or solution.
      • Create a new folder for your programming question and its solution. The structure should look like this:
        <name of program>/
        ├── question.md
        └── <solution> (Solution file in any language: C, Java, Python, etc.)
        
      • Don't forget to add your name and GitHub username here. 📝

  1. Intermediate Level 📁
    • Task 2: Submit Your Own Portfolio Page / GitHub Profile 📄
      • Before you start, please star ⭐ this repo and open an issue related to your portfolio submission.
      • How to Add Your Portfolio:
        • Create a new folder with your GitHub username.
        • Add your portfolio Image file there.
        • Ensure you don't modify anything in this template. Simply copy the code and fill in your details:
          <table width="100%">
            <tr>
              <td align="center">
                 <img src="Image URL" height="250" width="300" />
                <p><a href="portfolio link">Your Name</a></p>
               </td>
            </tr>
          </table>
      • After submitting, add your profile details in data.json. 📅

How to Contribute

  1. Star this Repository: Hacktoberfest-2024. (Important)
  2. Fork the Repository.
  3. Clone Your Fork:
    git clone https://github.com/<your-github-username>/Hacktoberfest-2024
    cd Hacktoberfest-2024
  4. Create a New Branch:
    git checkout -b <your_branch_name>
  5. Make Changes:
    • Stage and commit:
    git add -A
    git commit -m "<your_commit_message>"
  6. Push Your Changes:
    git push -u origin <your_branch_name>

Congratulations! 🎉 You've contributed to Hacktoberfest 2024!