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

reorganization of installation slides

parent 58a1a4cb
No related branches found
No related tags found
No related merge requests found
# The terminal (shell)
**macOS users:**
> Start the Terminal from your `/Applications` directoy.
![bulb](slides/img/bulb.png) Install iTerm2: [https://www.iterm2.com](https://www.iterm2.com)
<br>
**Windows users:**
> Install Git Bash: [https://git-scm.com/download/win](https://git-scm.com/download/win)
<br>
**Linux users:**
> Launch default terminal.<br>
![bulb](slides/img/bulb.png) Install Terminator: [https://launchpad.net/terminator](https://launchpad.net/terminator)
# Installation of `git` # Installation of `git`
<img src="slides/img/github_app.png" class="as-is" height="200" /> <img src="slides/img/github_app.png" class="as-is" height="200" />
**macOS** **macOS**
Install *Xcode Command Line Tools* > Install *Xcode Command Line Tools*
<br>
**Windows** **Windows**
Install Git Bash: <br>`https://git-scm.com/download/win` > Install Git Bash: <br>`https://git-scm.com/download/win`
<br>
**Linux (Ubuntu)** **Linux (Ubuntu)**
...@@ -24,22 +49,16 @@ $ sudo apt-get install git-all ...@@ -24,22 +49,16 @@ $ sudo apt-get install git-all
**macOS** **macOS**
Start the `Terminal` or `iTerm`. > Start the `Terminal` or `iTerm`.
<br>
**Windows** **Windows**
Start `GUI Bash`. > Start `GUI Bash`.
<br>
**Linux (Ubuntu)** **Linux (Ubuntu)**
Start the `Terminal` or `Terminator`. > Start the `Terminal` or `Terminator`.
**Is `git` properly installed?**
```bash
$ git --version
# git version 2.10.0
```
\ No newline at end of file
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
{ "filename": "index.md" }, { "filename": "index.md" },
{ "filename": "overview.md" }, { "filename": "overview.md" },
{ "filename": "what_is_git.md" }, { "filename": "what_is_git.md" },
{ "filename": "github_gitlab.md" },
{ "filename": "installation.md" },
{ "filename": "the_terminal.md" }, { "filename": "the_terminal.md" },
{ "filename": "the_editor.md" }, { "filename": "the_editor.md" },
{ "filename": "installation.md" },
{ "filename": "github_gitlab.md" },
{ "filename": "configuration.md" }, { "filename": "configuration.md" },
{ "filename": "cloneRepo.md" }, { "filename": "cloneRepo.md" },
{ "filename": "forks.md" }, { "filename": "forks.md" },
......
# PART II
<br><br><h1>Basic git course</h1>
# The terminal (shell)
**macOS users:**
Start the Terminal from your `/Applications` directoy.
![bulb](slides/img/bulb.png) Install iTerm2: `https://www.iterm2.com`
**Windows users:**
Install Git Bash: <br>`https://git-scm.com/download/win`
**Linux users:**
Launch default terminal.<br>
![bulb](slides/img/bulb.png) Install Terminator: `https://launchpad.net/terminator`
# First steps in the terminal # First steps in the terminal
Starting the terminal presents itself with a line where you can enter a command Starting the terminal presents itself with a line where you can enter a command
...@@ -38,6 +13,15 @@ $ ...@@ -38,6 +13,15 @@ $
When you open your terminal (shell), you are located When you open your terminal (shell), you are located
in your home directory (unless otherwise configured), denoted as `~/`. in your home directory (unless otherwise configured), denoted as `~/`.
<br>
**Is `git` properly installed?**
```bash
$ git --version
# git version 2.10.0
```
# Essential Linux commands # Essential Linux commands
......
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