diff --git a/2020/2020-03-30_basicGitTraining/slides/installation.md b/2020/2020-03-30_basicGitTraining/slides/installation.md
index 506be614073e67dd22fc042230ccb1eb236a9792..731b4e823deb56000b71acfa54ce9758773ed458 100644
--- a/2020/2020-03-30_basicGitTraining/slides/installation.md
+++ b/2020/2020-03-30_basicGitTraining/slides/installation.md
@@ -1,16 +1,41 @@
+# The terminal (shell)
+
+**macOS users:**
+
+> Start the Terminal from your `/Applications` directoy.
+
+![bulb](slides/img/bulb.png) Install iTerm2: [https://www.iterm2.com](https://www.iterm2.com)
+
+<br>
+
+**Windows users:**
+
+> Install Git Bash: [https://git-scm.com/download/win](https://git-scm.com/download/win)
+
+<br>
+
+**Linux users:**
+
+> Launch default terminal.<br>
+![bulb](slides/img/bulb.png) Install Terminator: [https://launchpad.net/terminator](https://launchpad.net/terminator)
+
+
+
 # Installation of `git`
 
 <img src="slides/img/github_app.png" class="as-is" height="200" />
 
 **macOS**
 
-Install *Xcode Command Line Tools*
+> Install *Xcode Command Line Tools*
 
+<br>
 
 **Windows**
 
-Install Git Bash: <br>`https://git-scm.com/download/win`
+> Install Git Bash: <br>`https://git-scm.com/download/win`
 
+<br>
 
 **Linux (Ubuntu)**
 
@@ -24,22 +49,16 @@ $ sudo apt-get install git-all
 
 **macOS**
 
-Start the `Terminal` or `iTerm`.
+> Start the `Terminal` or `iTerm`.
 
+<br>
 
 **Windows**
 
-Start `GUI Bash`.
+> Start `GUI Bash`.
 
+<br>
 
 **Linux (Ubuntu)**
 
-Start the `Terminal` or `Terminator`.
-
-
-**Is `git` properly installed?**
-
-```bash
-$ git --version
-# git version 2.10.0
-```
\ No newline at end of file
+> Start the `Terminal` or `Terminator`.
diff --git a/2020/2020-03-30_basicGitTraining/slides/list.json b/2020/2020-03-30_basicGitTraining/slides/list.json
index b2da2460352f3282e8b938dd62abbe7dcf1dd374..5794aa1399df46ac7386b3684c0a3c442e7cc74c 100644
--- a/2020/2020-03-30_basicGitTraining/slides/list.json
+++ b/2020/2020-03-30_basicGitTraining/slides/list.json
@@ -2,10 +2,10 @@
     { "filename": "index.md" },
     { "filename": "overview.md" },
     { "filename": "what_is_git.md" },
+    { "filename": "github_gitlab.md" },
+    { "filename": "installation.md" },
     { "filename": "the_terminal.md" },
     { "filename": "the_editor.md" },
-    { "filename": "installation.md" },
-    { "filename": "github_gitlab.md" },
     { "filename": "configuration.md" },
     { "filename": "cloneRepo.md" },
     { "filename": "forks.md" },
diff --git a/2020/2020-03-30_basicGitTraining/slides/the_terminal.md b/2020/2020-03-30_basicGitTraining/slides/the_terminal.md
index 32e9979c1fc4d3eeb5286280c4b132bcb4fba8d5..0abe54183778dc4ff637384cc65fedfc0fdc147a 100644
--- a/2020/2020-03-30_basicGitTraining/slides/the_terminal.md
+++ b/2020/2020-03-30_basicGitTraining/slides/the_terminal.md
@@ -1,28 +1,3 @@
-# PART II
-
-<br><br><h1>Basic git course</h1>
-
-
-
-# The terminal (shell)
-
-**macOS users:**
-
-Start the Terminal from your `/Applications` directoy.
-
-![bulb](slides/img/bulb.png) Install iTerm2: `https://www.iterm2.com`
-
-**Windows users:**
-
-Install Git Bash: <br>`https://git-scm.com/download/win`
-
-**Linux users:**
-
-Launch default terminal.<br>
-![bulb](slides/img/bulb.png) Install Terminator: `https://launchpad.net/terminator`
-
-
-
 # First steps in the terminal
 
 Starting the terminal presents itself with a line where you can enter a command
@@ -38,6 +13,15 @@ $
 When you open your terminal (shell), you are located
 in your home directory (unless otherwise configured), denoted as `~/`.
 
+<br>
+
+**Is `git` properly installed?**
+
+```bash
+$ git --version
+# git version 2.10.0
+```
+
 
 
 # Essential Linux commands