Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.18 KB

CONTRIBUTE.md

File metadata and controls

47 lines (33 loc) · 1.18 KB

Contributing to This Repository

Thanks for coming here to contribute :)

Please follow the steps below to contribute to this project.

Steps to Contribute

  1. Fork this repository:

    • Click the Fork button at the top right corner of the repository page.
  2. Clone this repository:

    • Open your terminal and run the following command:
      git clone <your-forked-repo-url>
    • Replace <your-forked-repo-url> with the URL of your forked repository. You can find this URL on your forked repository page on GitHub.
  3. Navigate to the project directory:

    cd dsa-practice-site
    
  4. Make your changes:

    • Edit, add, or delete files as needed.
  5. Commit your changes

    • After making changes, stage them with:
    git add .
  • Then commit the changes with a descriptive message:
    git commit -m "your message here"
  1. Push changes to your forked repo with:

    git push
  2. Create a pull request:

  • Go to the your repo and click "Contribute". Select "Open Pull Request" from the dropdown. Add descriptions of PR and click "Create Pull Request".

HAPPY HACKING!!!