feature/name
历史分支Master分支存储正式发布的事Develop分支作为功能的收集分支
一、repository:[rɪ'pɑzə'tɔri],仓库。 二、feature分支是从develop打出来的。 三、功能分支——feature分支: 1、使用develop分支作为父分支, 2、每个新功能位于一个自己的分支 3、新功能完成后,合并回develop分支。 4、新功能提交应该从不直接与master分支交互。 5、分支名称feature/[feature name]。