Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 572 Bytes

提交代码到仓库.md

File metadata and controls

21 lines (13 loc) · 572 Bytes

开发者提交代码到仓库:

1 新建一个分支,分支名称可以根据场景自行定义,注意:分支在开发之初就要开始创建,不要等到提交代码时候再创建

$ git checkout -b xxx					//git checkout -b coding_test.branch
2 将分支提交到Coding仓库

$ git push --set-upstream origin xxx 	//git push --set-upstream origin coding_test.branch

开发者将分支代码合并到Master分支:

评审者将分支代码合并到Master分支: