Thank you for your interest in contributing to this project! To maintain high code quality and clear version management, please follow the steps below when submitting your changes.
Fork this repository to your own GitHub account.
git clone https://github.com/<your-username>/<repository-name>.git
cd <repository-name>git checkout -b feature/your-feature-nameRecommended naming convention:
feature/xxxorfix/xxx, to easily distinguish between new features and bug fixes.
- Make your code changes while keeping the project’s coding style consistent.
- Ensure that all new features or fixes pass the necessary tests.
git add .
git commit -m "type: short description"It’s recommended to follow the Conventional Commits specification to keep commit history clean and readable.
git push origin feature/your-feature-name-
On GitHub, click New Pull Request.
-
The target branch must be the
mainbranch of this repository. -
Fill in the PR description:
- Describe the main changes you made.
- If related issues exist, please link them in the PR.