From 8b7afcdd9f6741c5ccb23711074d7652b04380fd Mon Sep 17 00:00:00 2001 From: Laurent Heirendt <laurent.heirendt@uni.lu> Date: Tue, 17 Jan 2017 20:47:22 +0100 Subject: [PATCH] Minor changes --- list.json | 6 ------ overview.md | 2 +- ready.md | 4 ++-- what_is_git.md | 14 ++++++++++++++ why_use_git.md | 12 ------------ 5 files changed, 17 insertions(+), 21 deletions(-) delete mode 100644 why_use_git.md diff --git a/list.json b/list.json index eaa96734..b6cafbb4 100644 --- a/list.json +++ b/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/overview.md b/overview.md index cfc6f802..d3553ded 100644 --- a/overview.md +++ b/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/ready.md b/ready.md index 118f9786..8083fdaa 100644 --- a/ready.md +++ b/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/what_is_git.md b/what_is_git.md index 378da33e..649f5c94 100644 --- a/what_is_git.md +++ b/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/why_use_git.md b/why_use_git.md deleted file mode 100644 index ebbdd10c..00000000 --- a/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. -- GitLab