Skip to content
Snippets Groups Projects
Commit 466337fe authored by Sylvain Arreckx's avatar Sylvain Arreckx
Browse files

Merge branch 'minorChanges' into 'develop'

Minor changes

See merge request !15
parents 869337ce b68bdec9
No related branches found
No related tags found
2 merge requests!18merge all,!15Minor changes
......@@ -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>
......
......@@ -23,12 +23,6 @@
"data-background": "../img/whiteBG.jpg"
}
},
{
"filename": "why_use_git.md",
"attr": {
"data-background": "../img/whiteBG.jpg"
}
},
{
"filename": "installation.md",
"attr": {
......
## 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)//-->
......
## 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.
......@@ -9,3 +9,17 @@
![](img/linus.jpg)
<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