diff options
author | Marcel Amirault <mamirault@gitlab.com> | 2019-07-18 01:15:58 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-07-18 01:15:58 +0000 |
commit | 746f54787799ee5ea8595a8730d363bfd250ffab (patch) | |
tree | 4f37de774117c5a9c38d5cb4f393e5ce9153aa0e /doc/university | |
parent | 4230b4e4d38b19a2506f5266a81dc41db8ac1165 (diff) | |
download | gitlab-ce-746f54787799ee5ea8595a8730d363bfd250ffab.tar.gz |
Fix unordered list spacing
Correct the spacing of unordered markdown lists
in docs, to maintain standards of documentation.
Diffstat (limited to 'doc/university')
-rw-r--r-- | doc/university/training/topics/getting_started.md | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/university/training/topics/getting_started.md b/doc/university/training/topics/getting_started.md index 08027c5d15b..e8ff7916590 100644 --- a/doc/university/training/topics/getting_started.md +++ b/doc/university/training/topics/getting_started.md @@ -8,14 +8,15 @@ comments: false - Create a new repository by instantiating it through: - ```bash - git init - ``` + ```bash + git init + ``` + - Copy an existing project by cloning the repository through: - ```bash - git clone <url> - ``` + ```bash + git clone <url> + ``` ## Central Repos @@ -23,9 +24,9 @@ comments: false - Bare repositories don't allow file editing or committing changes. - Create a bare repo with: - ```bash - git init --bare project-name.git - ``` + ```bash + git init --bare project-name.git + ``` ## Instantiate workflow with clone |