Skip to content

Latest commit

 

History

History
74 lines (46 loc) · 1.9 KB

CONTRIBUTING.md

File metadata and controls

74 lines (46 loc) · 1.9 KB

Contributing Guidelines

Thank you for considering contributing to our web project! We welcome contributions from everyone, regardless of their level of expertise. To ensure a smooth collaboration process, please take a moment to review the following guidelines.

How to Contribute

  1. Fork the repository:

    Visit the repository and click on the "Fork" button in the top-right corner of the page. This will create a copy of the repository in your GitHub account.

  2. Clone the repository:

    After forking, clone the repository to your local machine using the following command

    git clone <url>

replace url with the url to your repo

  1. Create a new folder:

    Inside src/content/introductions, create a new folder with your name. eg: Aditya Jyoti

  2. Add an introduction file:

    Inside the folder you just created, add a file named introduction.md.

  3. Write your introduction:

    In the introduction.md file, provide information about yourself.

    ---
    name: [your name]
    interests: [3 comma separated interests]
    description: [talk about yourself]
    github: [add your github link]
    image: [true or false]
    ---
  4. Stage your changes:

    Use the following command to stage your changes:

    git add .
  5. Commit your changes:

    Commit your changes with a descriptive message using the following command:

     git commit -m "Add introduction for [Your Name]"
  6. Push your changes:

    Push your changes to your forked repository using the following command:

    git push 
  7. Create a Pull Request (PR):

    Visit the main repository and click on the "New pull request" button. Compare the changes and submit your PR.

  8. Wait