Commit 74e53f6a authored by Marcel Amirault's avatar Marcel Amirault

Add last redirect for workflow.md

parent d14c89c4
......@@ -7,7 +7,7 @@ comments: false
- [Automatic issue closing](../user/project/issues/managing_issues.md#closing-issues-automatically)
- [Cycle Analytics](../user/project/cycle_analytics.md)
- [Description templates](../user/project/description_templates.md)
- [Feature branch workflow](workflow.md)
- [Feature branch workflow](../gitlab-basics/feature_branch_workflow.md)
- [Groups](../user/group/index.md)
- Issues - The GitLab Issue Tracker is an advanced and complete tool for
tracking the evolution of a new idea or the process of solving a problem.
......
# Feature branch workflow
---
redirect_to: '../gitlab-basics/feature_branch_workflow.md'
---
1. Clone project:
```bash
git clone git@example.com:project-name.git
```
1. Create branch with your feature:
```bash
git checkout -b $feature_name
```
1. Write code. Commit changes:
```bash
git commit -am "My feature is ready"
```
1. Push your branch to GitLab:
```bash
git push origin $feature_name
```
1. Review your code on commits page.
1. Create a merge request.
1. Your team lead will review the code & merge it to the main branch.
This document was moved to [another location](../gitlab-basics/feature_branch_workflow.md).
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment