4.sourcetree使用

1.点击克隆/新建 拉取远程分支

填入远程仓库地址,本地存在地址,拉取的远程分支名即可确定克隆


4.sourcetree使用_第1张图片
image.png

2.克隆完成后,左侧会显示一个master主分支。

4.sourcetree使用_第2张图片
image.png

3.master是用于产品发布的源码,我们要创建唯一的develop主开发分支。

点击软件右上角的Git工作流按钮


4.sourcetree使用_第3张图片
image.png

直接点击“确定”即可创建开发主分支


4.sourcetree使用_第4张图片
image.png

4.关于分支的类型和作用可以参考

master(主分支);develop(主开发分支);feature(功能开发分支);release(测试分支);hotfix(补丁分支)
https://www.jianshu.com/p/0841db00bae5

5.在项目开发过程中,我们可以需要新建feature功能开发分支来方便程序员在互不影响的条件下进行开发。

(1)新建feature功能开发分支。首先双击sourcetree左侧的develop开发主分支,进入develop分支,点击“Git工作流”。


4.sourcetree使用_第5张图片
image.png

选择“建立新的功能”


4.sourcetree使用_第6张图片
image.png

(2)在feature_work分支下进行开发并提交代码,如下我增加了两个文件,并提交了改动
4.sourcetree使用_第7张图片
image.png

4.sourcetree使用_第8张图片
image.png

4.sourcetree使用_第9张图片
image.png

此时切换develop主开发分支和feature_work分支即可发现,feature_work分支新增了两个文件。
(3)当feature功能分支开发完成后,即可将feature中的代码合并到develop分支中。在feature_work分支中点击“Git工作流”,选择完成功能


4.sourcetree使用_第10张图片
image.png

feature功能分支中的代码并入了develop开发主分支,feature_work分支被删除


4.sourcetree使用_第11张图片
image.png

(4)多人协作开发,feature分支冲突发生冲突的解决。
创建两个feature分支,分别对new_feature_1.txt文件进行修改。
image.png

4.sourcetree使用_第12张图片
image.png
4.sourcetree使用_第13张图片
image.png

先合并feature1,后合并feature2,便会出现冲突


4.sourcetree使用_第14张图片
image.png

冲突后,我们处于develop分支,在该分支解决冲突再次提交即可。


4.sourcetree使用_第15张图片
image.png

冲突解决后feature2的分支不会被删除,需要手动删除。
4.sourcetree使用_第16张图片
image.png

6.项目进行的一定阶段,就需要发布测试版本进行上线前的测试工作。我们可以从develop开发主分支创建release测试分支。点击“Git工作流”,选择“建立新的发布版本”

4.sourcetree使用_第17张图片
image.png

4.sourcetree使用_第18张图片
image.png

后续开发依然在develop上进行,在测试过程中发现的问题在release测试分支上进行修改,修改完成后提交。

7.测试结束后便可进行正式发布,点击Git工作流“,选择发布版本”

4.sourcetree使用_第19张图片
image.png

4.sourcetree使用_第20张图片
image.png

4.sourcetree使用_第21张图片
image.png

发布完成后可以看到pro_v1的代码同时合并发到了master分支和develop分支。


4.sourcetree使用_第22张图片
image.png

8.正式办发布后,如果正式版出现了问题,便可以在master分支建立hotfix补丁分支。将分支切换到master,点击“Git工作流”,选择“建立新的修复补丁”

4.sourcetree使用_第23张图片
image.png

4.sourcetree使用_第24张图片
image.png

补丁修复完成后,点击“Git工作流”,选择“完成修复补丁”


4.sourcetree使用_第25张图片
image.png

4.sourcetree使用_第26张图片
image.png

4.sourcetree使用_第27张图片
image.png

合并完成后可以看到fix_work1的代码同时合并发到了master分支和develop分支。


4.sourcetree使用_第28张图片
image.png

结束!

你可能感兴趣的:(4.sourcetree使用)