-
Laurent Heirendt authoredLaurent Heirendt authored
Overview
- The Linux Terminal
- What is
git
? Why do I need it? (5 min) - GitHub and GitLab (5min)
- Practical session (5 min)
- GitLab interface
- GitHub interface
- Practical session (5 min)
- The 5 essential commands (10 min)
- Practical session (15 min)
- init
- clone
- add
- Practical session (15 min)
- Branches (10 min)
- Practical session (10 min)
- Forks (10 min)
- Practical session (10 min)
- Evaluation (10 min)
The Linux Terminal
Starting the terminal presents itself with a line where you can enter a command:
michael@myComputer>
Often written, for covenience, as:
$
When you open your terminal (git shell) and unless otherwise configured, you are located
in your home directory, denoted as ~/
.
Essential Linux commands
List the contents of a directory
$ ls
Change the directory to a specific folder
$ cd myDirectory
Change the directory 1 level and 2 levels up
$ cd ..
$ cd ../..
Create a directory
$ mkdir myNewDirectory
git
? Why do I need it?
What is
Designed and implemented in 2005 by Linus Torvalds
git
is a version tracking system, essentially for code.
Collaborative platform for code development
The 5 essential commands
pull, status, add, commit, push
(P-SAC-P)
note: Put your speaker notes here. You can see them pressing 's'. Fullscreen can be activated by typing 'f'.