Contributing 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's code style
- Ensure tests pass
- Update related documentation
Commit Standards
feat: new feature
fix: bug fix
docs: documentation update
refactor: refactoring
test: test related
chore: build/tool update