Skip to content

Latest commit

 

History

History
93 lines (68 loc) · 3.06 KB

File metadata and controls

93 lines (68 loc) · 3.06 KB

🚀 How to Contribute to RVCE-Coding-Bootkit

A step-by-step guide for contributors

Welcome! We encourage second, third, and fourth year students to add valuable learning resources, project ideas, or code samples to this repository.

🛠️ Prerequisites

  • Git installed on your system
  • GitHub account
  • A Git client like Git Bash (Windows) or Terminal (macOS/Linux)

🔄 Steps to Contribute

  1. Fork the Repository
    Click on the Fork button in the top right corner of this repository.
    This creates a personal copy of the repo in your GitHub account.

  2. Clone the Forked Repository
    Open your terminal (macOS/Linux) or Git Bash (Windows) and run:

    git clone https://github.com/YOUR_USERNAME/RVCE-Coding-Bootkit.git

    Replace YOUR_USERNAME with your GitHub username.

  3. Navigate to the Project Directory

    cd RVCE-Coding-Bootkit
    cd Resources
  4. Create a New Branch

    git checkout -b your-branch-name

    Give your branch a meaningful name like add-python-resources or update-dsa-folder.

  5. Make Your Changes

    • Add new files or folders
    • Edit existing content (like README.md or code samples)
    • Make sure your additions are in the correct folder (e.g., Python/, AI-ML/)
  6. Stage and Commit Your Changes

    git add .
    git commit -m "Add: your meaningful message here"
  7. Push to Your Forked Repository

    git push origin your-branch-name
  8. Create a Pull Request (PR)

    • Go to your forked repository on GitHub
    • Click Compare & pull request
    • Add a clear description of your changes, and mention your full name and USN
    • Click Create pull request
  9. Get Recognized with an E-Certificate!
    🌟 All students whose pull request is accepted will receive an E-Certificate of contribution!

    To be eligible:

    • Your contribution must be original and valuable
    • You must include your Full Name, USN and College Email ID in the pull request description

📬 Need Help?

Thank you for contributing! 🎉