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.
-
Fork the Repository: Click the "Fork" button at the top right corner of the repository page to create your own copy of the project.
-
Clone Your Fork: Clone your forked repository to your local machine.
git clone https://github.com/nishchalgv1/leetcode_solutions.git
-
Create a New Branch: Always create a new branch for your changes.
git checkout -b feature/your-feature-name
-
Make Your Changes: Implement your changes or features
-
Commit Your Changes: Write a clear commit message describing your changes.
git add . git commit -m "Add a brief description of your changes"
-
Push to Your Fork: Push your changes back to your forked repository.
git push origin feature/your-feature-name
-
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.