Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.18 KB

CONTRIBUTING.md

File metadata and controls

28 lines (19 loc) · 1.18 KB

Contributing to ytClone

Thank you for your interest in contributing to [Your Project Name]! We appreciate your help in improving our project. Please follow the guidelines below to ensure a smooth contribution process.

How to Contribute

  1. Fork the Repository: Click the "Fork" button at the top right corner of the repository page to create your own copy of the project.

  2. Clone Your Fork: Clone your forked repository to your local machine.

    git clone https://github.com/nishchalgv1/leetcode_solutions.git
    
  3. Create a New Branch: Always create a new branch for your changes.

    git checkout -b feature/your-feature-name
    
  4. Make Your Changes: Implement your changes or features

  5. Commit Your Changes: Write a clear commit message describing your changes.

    git add .
    git commit -m "Add a brief description of your changes"
    
  6. Push to Your Fork: Push your changes back to your forked repository.

     git push origin feature/your-feature-name
    
  7. Open a Pull Request: Go to the original repository and click on "New Pull Request." Select your branch and submit your PR with a clear description of what you have done.