summaryrefslogtreecommitdiff
path: root/doc/workflow/workflow.md
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2019-07-31 10:29:10 +0000
committerMarcia Ramos <marcia@gitlab.com>2019-07-31 10:29:10 +0000
commit298252bb6be9cf9fe725701fe172fee774d7b33a (patch)
tree8eb1d2b9dd03d2e52df7462a1fa95717abb40305 /doc/workflow/workflow.md
parentebfa2b49ac0f5857f7b49305344dda75bbc0d3df (diff)
downloadgitlab-ce-298252bb6be9cf9fe725701fe172fee774d7b33a.tar.gz
Fix whitespace in topic, university, workflow docs
Many code blocks are 4spaced, and they render in GitLab without coloring as a result, even though they are fenced with a language label. If in a list, other items will render as being in a code block too, even if not meant to. This fixes all these issues, and cleans up minor white space issues in /topic, /university, /update and /workflow docs.
Diffstat (limited to 'doc/workflow/workflow.md')
-rw-r--r--doc/workflow/workflow.md38
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/workflow/workflow.md b/doc/workflow/workflow.md
index f70e41df842..7fac41c3b6f 100644
--- a/doc/workflow/workflow.md
+++ b/doc/workflow/workflow.md
@@ -1,31 +1,31 @@
# Feature branch 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
+ ```
-1. Create branch with your feature:
+1. Create branch with your feature:
- ```bash
- git checkout -b $feature_name
- ```
+ ```bash
+ git checkout -b $feature_name
+ ```
-1. 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"
+ ```
-1. Push your branch to GitLab:
+1. Push your branch to GitLab:
- ```bash
- git push origin $feature_name
- ```
+ ```bash
+ git push origin $feature_name
+ ```
-1. Review your code on commits page.
+1. Review your code on commits page.
-1. Create a merge request.
+1. Create a merge request.
-1. Your team lead will review the code &amp; merge it to the main branch.
+1. Your team lead will review the code &amp; merge it to the main branch.