summaryrefslogtreecommitdiff
path: root/doc/workflow/workflow.md
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-03-31 18:10:20 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2014-03-31 18:10:20 +0200
commit2496f85d464c599d83bd95bde11b1cb6895693bd (patch)
tree9463980353b763627ee13ba9f585f68c3a83fb85 /doc/workflow/workflow.md
parentdfc92cd25d7025378a4411525dc5a1b8ff5b1663 (diff)
downloadgitlab-ce-2496f85d464c599d83bd95bde11b1cb6895693bd.tar.gz
Fix rendering for enumeration for doc page
Diffstat (limited to 'doc/workflow/workflow.md')
-rw-r--r--doc/workflow/workflow.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/workflow/workflow.md b/doc/workflow/workflow.md
index 1c238f74957..bb232e9d5c5 100644
--- a/doc/workflow/workflow.md
+++ b/doc/workflow/workflow.md
@@ -3,24 +3,25 @@
```bash
git clone git@example.com:project-name.git
```
+
2. Create branch with your feature
```bash
git checkout -b $feature_name
```
-3. Write code. Comit changes
+3. Write code. Commit changes
```bash
git commit -am "My feature is ready"
```
4. Push your branch to GitLab
-
+
```bash
git push origin $feature_name
```
-5. Review your code on Commits page
+5. Review your code on commits page
6. Create a merge request
7. Your team lead will review the code &amp; merge it to the main branch