Clone
2
基于Git的项目管理
jiangdingxuan edited this page 2022-03-09 09:01:16 +08:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

项目经理(仓库管理员)

  • 从模板新建仓库。添加协作者。
  • 初始化仓库,配置分支保护。
  • 管理里程碑。
  • 合并MR。
  • 新建feature工单和enhancement工单。

开发

  • 领取任务/bug后新建feature分支并push到远端。
  • 开发完成后将feature分支merge到test分支在测试环境发版。将相关工单标记为"ACCOMPLISHED"(完成)。
  • 同时将feature分支向develop分支提交MR。由其他开发人员进行CodeReview。

测试

  • 创建bug工单完善标签、里程碑、指派人等信息。
  • 在工单页面筛选"未关闭"状态、"ACCOMPLISHED"标签,进行回归测试。
  • 测试不通过时直接在工单下进行回复。
  • 测试通过后,将工单关闭。