Pull Request Guidelines
This document outlines the process for submitting and reviewing pull requests for Docu.
Creating a Pull Request
Fork and Clone: Start by forking the repository and cloning it locally
Create a Branch: Create a branch for your changes
bashgit checkout -b feature/my-new-feature
Make Changes: Implement your changes, following the code style guidelines
Write Tests: Add tests for your changes to ensure they work correctly
Run Tests: Make sure all tests pass before submitting
bashpytest
Commit Changes: Use clear and descriptive commit messages
bashgit commit -m "Add feature: detailed description of changes"
Push Changes: Push your changes to your fork
bashgit push origin feature/my-new-feature
Create Pull Request: Open a pull request on GitHub with a clear title and description
Pull Request Template
When creating a pull request, please include:
- Title: A clear and descriptive title
- Description: Details of what was changed and why
- Related Issues: Link to any related issues
- Testing: How you tested your changes
- Checklist:
- [ ] Added tests
- [ ] Updated documentation
- [ ] Code follows style guidelines
- [ ] All tests pass
Review Process
- At least one maintainer will review each pull request
- Feedback may be provided and changes requested
- Once approved, a maintainer will merge the pull request
After Merge
After your pull request is merged:
- Delete your branch
- Update your local master/main branch
- Start a new branch for any further changes
Thank you for contributing to Docu!