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