freeCodeCamp/guide/chinese/agile/parallel-development/index.md

11 lines
841 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Parallel Development
localeTitle: 并行开发
---
## 并行开发
Parallel Development代表开发过程分为多个分支提供具有稳定版本和新功能的多功能产品。在更常见的简单软件开发过程中您只有一个分支包含错误修复和改进以及新功能。在并行开发中多个分支可以共存。
通常并行开发包含一个主“master”分支它是最稳定的包含对现有代码的重要修复。从主分支创建更多分支以向现有代码添加新的“路径”。这些分支提供了新功能但不包括从主分支同时应用的修复程序。客户了解这些版本并使用特殊设备或测试机器来测试新功能。当QA测试通过时可以将side branch与主分支合并以向发布版本引入新功能。
#### 更多信息: