Welcome to our project! We appreciate your interest in contributing. Please follow these guidelines to get started.
- Clone the Repository:
- Start by cloning the repository to your local machine:
git init git remote add origin https://github.com/pandeyaman2170/SDE-Practice2.git
- Start by cloning the repository to your local machine:
-
Create a Feature Branch:
- Create a new branch locally for your changes. Make sure to name it appropriately:
git pull origin main git branch feature-branch git checkout feature-branch
- This helps in keeping your changes isolated and makes the collaboration process smoother.
- Create a new branch locally for your changes. Make sure to name it appropriately:
-
Make Changes:
- Implement your changes and improvements in the feature branch only.
-
Commit Your Changes:
- Commit your changes to the feature branch:
git add . git commit -m "Your descriptive commit message"
- Commit your changes to the feature branch:
- Raise a Pull Request:
- Once you are ready to contribute your changes, push the feature branch to the remote repository:
git push origin feature-branch git checkout main git merge feature-branch git push origin main
- Visit the GitHub repository and create a Pull Request from your feature branch.
- Provide a clear title and description for your Pull Request.
- Ensure your changes have been tested and are ready for review.
- Once you are ready to contribute your changes, push the feature branch to the remote repository:
Thank you for contributing to our project! If you have any questions or need assistance, feel free to reach out.