CREATE-PULL-REQUEST.md
September 28, 2023 ยท View on GitHub
Steps to create a pull request at OpenGenus Checklist
To contribute code changes to the OpenGenus Checklist project, follow these steps:
-
Fork the Repository: Click the "Fork" button on the repository page to create your copy of the project.
-
Clone Your Fork: Clone the repository to your local machine using
git clone. Replace<your-username>with your GitHub username.git clone https://github.com/<your-username>/checklist.git cd checklist -
Create a Branch: Create a new branch for your changes. Use a descriptive branch name that reflects the purpose of your changes.
git checkout -b feature
Remember to replace feature with your feature name.
- Make Changes: Make your code changes, enhancements, or bug fixes in the branch you created.
- Test Your Changes: Ensure that your changes work as expected and do not introduce new issues. Run tests if available.
- Commit Your Changes: Commit your changes with a clear and concise commit message.
git commit -m "Add new feature: My Feature"
- Push Your Changes: Push your branch to your fork on GitHub.
git push origin feature/my-feature
-
Open a Pull Request: Go to the OpenGenus Checklist repository and click "New Pull Request." Compare your branch with the main branch, add a title and description, and create the pull request.
-
Review and Collaborate: Collaborate with other contributors and maintainers to address any feedback or changes required for your pull request.
-
Merge Your Pull Request: Once your pull request is approved and passes any required tests, it will be merged into the main repository.