功能分支工作流 所有级别
-
克隆项目:
shellgit clone git@example.com:project-name.git -
创建功能分支:
shellgit checkout -b feature_name -
编写代码并提交:
shellgit commit -am "My feature is ready" -
推送分支到极狐GitLab:
shellgit push origin feature_name -
在提交页面检查您的代码。
-
创建一个合并请求。
-
您的组长审查代码并合并到主干分支。