From cc1858a01dfabf5a5fc699e38cea071574a68007 Mon Sep 17 00:00:00 2001 From: laurentheirendt <laurent.heirendt@uni.lu> Date: Mon, 30 Mar 2020 07:24:23 +0200 Subject: [PATCH] reorganization of installation slides --- .../slides/installation.md | 45 +++++++++++++------ .../slides/list.json | 4 +- .../slides/the_terminal.md | 34 ++++---------- 3 files changed, 43 insertions(+), 40 deletions(-) diff --git a/2020/2020-03-30_basicGitTraining/slides/installation.md b/2020/2020-03-30_basicGitTraining/slides/installation.md index 506be614..731b4e82 100644 --- a/2020/2020-03-30_basicGitTraining/slides/installation.md +++ b/2020/2020-03-30_basicGitTraining/slides/installation.md @@ -1,16 +1,41 @@ +# The terminal (shell) + +**macOS users:** + +> Start the Terminal from your `/Applications` directoy. + + 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> + Install Terminator: [https://launchpad.net/terminator](https://launchpad.net/terminator) + + + # Installation of `git` <img src="slides/img/github_app.png" class="as-is" height="200" /> **macOS** -Install *Xcode Command Line Tools* +> Install *Xcode Command Line Tools* +<br> **Windows** -Install Git Bash: <br>`https://git-scm.com/download/win` +> Install Git Bash: <br>`https://git-scm.com/download/win` +<br> **Linux (Ubuntu)** @@ -24,22 +49,16 @@ $ sudo apt-get install git-all **macOS** -Start the `Terminal` or `iTerm`. +> Start the `Terminal` or `iTerm`. +<br> **Windows** -Start `GUI Bash`. +> Start `GUI Bash`. +<br> **Linux (Ubuntu)** -Start the `Terminal` or `Terminator`. - - -**Is `git` properly installed?** - -```bash -$ git --version -# git version 2.10.0 -``` \ No newline at end of file +> Start the `Terminal` or `Terminator`. diff --git a/2020/2020-03-30_basicGitTraining/slides/list.json b/2020/2020-03-30_basicGitTraining/slides/list.json index b2da2460..5794aa13 100644 --- a/2020/2020-03-30_basicGitTraining/slides/list.json +++ b/2020/2020-03-30_basicGitTraining/slides/list.json @@ -2,10 +2,10 @@ { "filename": "index.md" }, { "filename": "overview.md" }, { "filename": "what_is_git.md" }, + { "filename": "github_gitlab.md" }, + { "filename": "installation.md" }, { "filename": "the_terminal.md" }, { "filename": "the_editor.md" }, - { "filename": "installation.md" }, - { "filename": "github_gitlab.md" }, { "filename": "configuration.md" }, { "filename": "cloneRepo.md" }, { "filename": "forks.md" }, diff --git a/2020/2020-03-30_basicGitTraining/slides/the_terminal.md b/2020/2020-03-30_basicGitTraining/slides/the_terminal.md index 32e9979c..0abe5418 100644 --- a/2020/2020-03-30_basicGitTraining/slides/the_terminal.md +++ b/2020/2020-03-30_basicGitTraining/slides/the_terminal.md @@ -1,28 +1,3 @@ -# PART II - -<br><br><h1>Basic git course</h1> - - - -# The terminal (shell) - -**macOS users:** - -Start the Terminal from your `/Applications` directoy. - - Install iTerm2: `https://www.iterm2.com` - -**Windows users:** - -Install Git Bash: <br>`https://git-scm.com/download/win` - -**Linux users:** - -Launch default terminal.<br> - Install Terminator: `https://launchpad.net/terminator` - - - # First steps in the terminal Starting the terminal presents itself with a line where you can enter a command @@ -38,6 +13,15 @@ $ When you open your terminal (shell), you are located 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 -- GitLab