From a8222f26eaf525e54bd169731f2c9cf94551227b Mon Sep 17 00:00:00 2001
From: Christian Krause <christian.krause@idiv.de>
Date: Fri, 24 May 2024 18:22:35 +0200
Subject: [PATCH] adds git commands to the summary slides

fixes #68
---
 basics.html | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/basics.html b/basics.html
index 47d226b..10b1933 100644
--- a/basics.html
+++ b/basics.html
@@ -667,9 +667,14 @@
           <section id="summary-1" data-markdown>
             ## you can now
 
-            - track changes in your projects
-            - browse your projects history
-            - see why a change was introduced
+            - create local repos (`init`)
+            - track changes in your projects (`stage`, `commit`)
+            - browse your projects history (`log`)
+            - rest are helpers (`status`, `diff`, `restore`)
+
+            notes:
+            - very important: `status`
+            - demo emacs git integration to show `stage -p`
           </section>
 
           <section id="summary-2" data-markdown>
@@ -993,8 +998,9 @@
           <section id="summary-3" data-markdown>
             ## you can now
 
-            - create and connect to remotes
-            - contribute to projects
+            - create and connect to remotes (`clone`, `push/pull`)
+            - contribute to projects (`switch -c`, `push -u origin`, MR/PR)
+            - hint: use `lol` alias
           </section>
 
           <section id="summary-4" data-markdown>
-- 
GitLab