贡献指南
感谢您对 AinetOS 社区的关注!我们欢迎所有形式的贡献。本指南将帮助您了解如何参与项目。
贡献方式
代码贡献
1. Fork 项目
首先,Fork 您想要贡献的项目仓库到您的 GitHub 账户。
2. 克隆仓库
git clone https://github.com/your-username/project-name.git
cd project-name
3. 创建分支
git checkout -b feature/your-feature-name
4. 进行修改
- 编写代码
- 添加测试
- 更新文档
5. 提交更改
git add .
git commit -m "feat: add your feature description"
请遵循 Conventional Commits 规范。
6. 推送并创建 Pull Request
git push origin feature/your-feature-name
然后在 GitHub 上创建 Pull Request。