summaryrefslogtreecommitdiff
path: root/doc/workflow/workflow.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/workflow/workflow.md')
-rw-r--r--doc/workflow/workflow.md40
1 files changed, 21 insertions, 19 deletions
diff --git a/doc/workflow/workflow.md b/doc/workflow/workflow.md
index 8186cd53b20..ab29cfb670b 100644
--- a/doc/workflow/workflow.md
+++ b/doc/workflow/workflow.md
@@ -1,29 +1,31 @@
# Workflow
-1. Clone project
+1. Clone project:
- ```bash
- git clone git@example.com:project-name.git
- ```
+ ```bash
+ git clone git@example.com:project-name.git
+ ```
-2. Create branch with your feature
+1. Create branch with your feature:
- ```bash
- git checkout -b $feature_name
- ```
+ ```bash
+ git checkout -b $feature_name
+ ```
-3. Write code. Commit changes
+1. Write code. Commit changes:
- ```bash
- git commit -am "My feature is ready"
- ```
+ ```bash
+ git commit -am "My feature is ready"
+ ```
-4. Push your branch to GitLab
+1. Push your branch to GitLab:
- ```bash
- git push origin $feature_name
- ```
+ ```bash
+ git push origin $feature_name
+ ```
-5. Review your code on commits page
-6. Create a merge request
-7. Your team lead will review the code & merge it to the main branch
+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.