Contribution Guide
Welcome to contribute code and documentation to the YaoXiang project!
How to Contribute
- Fork the repository
- Create a feature branch:
git checkout -b feature/xxx - Commit your changes:
git commit -m "feat: xxx" - Push the branch:
git push origin feature/xxx - Create a Pull Request
Code Standards
- Follow the project code style
- Ensure tests pass
- Update relevant documentation
Commit Convention
feat: New feature
fix: Fix bug
docs: Documentation update
refactor: Refactor
test: Test related
chore: Build/tooling update