diff --git a/index.html b/index.html index 46454254d5405fb38683b9c29aff0d4221864140..1fb31fd76367571c33f7e94c20241da013e4c1d1 100644 --- a/index.html +++ b/index.html @@ -81,16 +81,6 @@ - <section data-separator="^\n\n\n" - data-vertical="^\n\n" - data-background="../img/whiteBG.jpg" data-markdown="slides/why_use_git.md"></section> - - - - - - - <section data-separator="^\n\n\n" data-vertical="^\n\n" data-background="../img/whiteBG.jpg" data-markdown="slides/installation.md"></section> diff --git a/slides/list.json b/slides/list.json index eaa96734b211027b930937950a0663fedcb4f60d..b6cafbb4aa9f3b494f7d13502dc669195f3a00c9 100644 --- a/slides/list.json +++ b/slides/list.json @@ -23,12 +23,6 @@ "data-background": "../img/whiteBG.jpg" } }, - { - "filename": "why_use_git.md", - "attr": { - "data-background": "../img/whiteBG.jpg" - } - }, { "filename": "installation.md", "attr": { diff --git a/slides/overview.md b/slides/overview.md index cfc6f802c2c923e0d4bc51222cf9d631ca7b9e89..d3553ded005be26313b8f49b2e4a857832c2b7f2 100644 --- a/slides/overview.md +++ b/slides/overview.md @@ -1,7 +1,7 @@ ## Overview 0. The Terminal -1. What is `git`? <!--(5 min)//--> +1. What is `git`? What is the use of `git`? <!--(5 min)//--> 2. GitHub and GitLab <!--(5min)//--> 3. Installation of `git` 4. The 5 essential commands <!--(10 min)//--> diff --git a/slides/ready.md b/slides/ready.md index 118f9786b608e6916028c7be1acdb830cc089b59..8083fdaa8ddbc611f3e2933917370f0e3e44ef82 100644 --- a/slides/ready.md +++ b/slides/ready.md @@ -1,5 +1,5 @@ -## Ready for a practice!!! +## Ready to practice? <br>Go to https://github.com/uni-lu/group_members -<br>And follow the `README` file. +<br>And follow the instructions in the `README` file. diff --git a/slides/what_is_git.md b/slides/what_is_git.md index 378da33ee52e2766833d2e1fe27c1ec5e7a14bc1..649f5c9462ab97edaa9ebd5ef6514ec9860b3d91 100644 --- a/slides/what_is_git.md +++ b/slides/what_is_git.md @@ -9,3 +9,17 @@  <div align="left"><small>[1] *https://en.wikipedia.org/wiki/Git*</small></div> + + +## What is the use of `git`? + +* No need to fully rewrite code; **reuse code** and **save time** +* Keep the changes you made over time (**history**) +* Allows you to **backtrack** (if necessary) and undo unwanted changes +* Easily **add contributions** of your collaborators to the main code base + +note: + +Other points to mention: +* git shall not be considered as a nuisance, but as a tool that should help to track and trace the code. +* git is not to track performance. Not using it shows exactly the opposite. diff --git a/slides/why_use_git.md b/slides/why_use_git.md deleted file mode 100644 index ebbdd10c371d72e40d451f2a5b5603a509a3c614..0000000000000000000000000000000000000000 --- a/slides/why_use_git.md +++ /dev/null @@ -1,12 +0,0 @@ -# Why use git? - -* No need to fully rewrite code; reuse code and save time. -* Keep the changes you made over time -* Allow you to backtrack (if necessary) and undo those changes -* Easily add contributions of your collaborators to the main code base - -note: - -Other points to mention: -* git shall not be considered as a nuisance, but as a tool that should help to track and trace the code. -* git is not to track performance. Not using it shows exactly the opposite.