Skip to content
Snippets Groups Projects
Commit 8b7afcdd authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

Minor changes

parent ff7d6dd7
No related branches found
No related tags found
No related merge requests found
...@@ -23,12 +23,6 @@ ...@@ -23,12 +23,6 @@
"data-background": "../img/whiteBG.jpg" "data-background": "../img/whiteBG.jpg"
} }
}, },
{
"filename": "why_use_git.md",
"attr": {
"data-background": "../img/whiteBG.jpg"
}
},
{ {
"filename": "installation.md", "filename": "installation.md",
"attr": { "attr": {
......
## Overview ## Overview
0. The Terminal 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)//--> 2. GitHub and GitLab <!--(5min)//-->
3. Installation of `git` 3. Installation of `git`
4. The 5 essential commands <!--(10 min)//--> 4. The 5 essential commands <!--(10 min)//-->
......
## Ready for a practice!!! ## Ready to practice?
<br>Go to https://github.com/uni-lu/group_members <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.
...@@ -9,3 +9,17 @@ ...@@ -9,3 +9,17 @@
![](img/linus.jpg) ![](img/linus.jpg)
<div align="left"><small>[1] *https://en.wikipedia.org/wiki/Git*</small></div> <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.
# 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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment