From 25d4a1c5dd61392b105193cff31323f34664dc80 Mon Sep 17 00:00:00 2001
From: Christian Krause <christian.krause@idiv.de>
Date: Mon, 3 Dec 2018 14:44:45 +0100
Subject: [PATCH] moves create repository task on its own slide

---
 basics.html | 22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)

diff --git a/basics.html b/basics.html
index ade1143..5d6a18b 100644
--- a/basics.html
+++ b/basics.html
@@ -495,14 +495,26 @@
 
             notes:
             - for this tutorial we are creating a new repository
-            - mkdir ~/projects
-            - git init hello
-            - README.md
-            - src/hello.lang
-            - for #homework you init your existing projects *without* version
+            - at home you can `init` your existing projects *without* version
               control
           </section>
 
+          <section id="cli-create-repository-your-turn" data-markdown>
+            ## create a repository
+            ### your turn
+
+            1.  create a project called **hello**
+            1.  write a short `README` file
+
+            notes:
+            ```bash
+            mkdir ~/projects
+            git init hello
+            cd hello
+            $EDITOR README.md
+            ```
+          </section>
+
           <section id="cli-git-status" data-markdown>
             ## command line
             ### git status
-- 
GitLab