# 如何为项目做贡献 Wiki 页面: [开发指南](https://github.com/PCL-Community/PCL2-CE/wiki/开发指南) [技术规范](https://github.com/PCL-Community/PCL2-CE/wiki/技术规范)
原 CONTRIBUTING.md 内容 ## 开始之前 查看 [Issues](https://github.com/PCL-Community/PCL2-CE/issues) 寻找可以参与的任务,或创建新 Issue 讨论您的想法。 ## 贡献流程 ### 报告问题 1. 在提交 Issue 前,请先搜索是否已有相关 Issue 2. 使用提供的 Issue 模板 3. 包含以下信息: - 清晰的问题描述 - 复现步骤(包括环境信息) - 预期与实际行为对比 - 相关日志/截图(如有) ### 提交代码 1. Fork 仓库并克隆到本地 ```bash git clone https://github.com/你的用户名/项目名称.git ``` 2. 创建你的分支 ```bash git checkout -b feat/your-feat-name # 或 git checkout -b fix/issue-number-desc ``` 3. 遵循项目代码风格进行编写 4. 提交更改,使用 Angular 规范提交信息 ```bash git commit -m "(scope): " ``` 5. 推送分支到你的 Fork ```bash git push origin your-branch ``` 6. 创建 Pull Request - 指向上游仓库的 `dev` 分支 - 详细填写 PR 信息 - 关联 Issue(如有) ## 开发规范 ### 测试要求 - 提交前请在本地编译通过确保无误后提交 ### Angular 规范 基本格式如下 ```commit message (scope?):