From 0023d1e03c1423a1ebfc7df3f73bb2e7c8589fea Mon Sep 17 00:00:00 2001 From: Laurent Heirendt <laurent.heirendt@uni.lu> Date: Thu, 12 Jan 2017 18:13:56 +0100 Subject: [PATCH] Background changes and changes to installation slides --- img/whiteBG.jpg | Bin 0 -> 43745 bytes index.html | 18 +++++++++--------- slides/installation.md | 30 +++++++++++++++++++++++++++++- slides/list.json | 9 +++++++++ 4 files changed, 47 insertions(+), 10 deletions(-) create mode 100644 img/whiteBG.jpg diff --git a/img/whiteBG.jpg b/img/whiteBG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85212b4fa12b9a27711119a2eb984a10dbf8223f GIT binary patch literal 43745 zcmeI)y)Feo7zW^PcKnCrEKw>nZsSBE5_&Fxqf)38Dhd~()~kuQ2tNfEAR4_jeqzr$ zjaKr^W|MipncbN@7w|Q=%~SL?*EiN9RS|>oMDrZ=+Trg0QKT4)k76`0v9dZi*x8H0 zRjH&Li(`3WW-emuHDY@y;{2k#kIh4zM*91x+L3?8_vckgWwpFN3xAz7*HKT6pUp&0 zbyRiAb!u+npj@oneRxcdRHFBL&r>~8nIEYvj8vNYn9Zr2p6lXuc`|&gIROF$2oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0{=>&U;2$sm2ReKygGh6o%~Ey zC*@A6s)>HPGj~!-!)qz0{&M@zPRc{6?RMJxS8^^(fB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ rfB*pk1PBlyK!5-N0t5&UAV7dXN8qd1Y3V)M>+~gU(??&@uXOhgOwn2F literal 0 HcmV?d00001 diff --git a/index.html b/index.html index 4e2459e2..1eb55078 100644 --- a/index.html +++ b/index.html @@ -53,7 +53,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/overview.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/overview.md"></section> @@ -63,7 +63,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/the_terminal.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/the_terminal.md"></section> @@ -73,7 +73,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/what_is_git.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/what_is_git.md"></section> @@ -83,7 +83,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/installation.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/installation.md"></section> @@ -93,7 +93,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/essential_commands.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/essential_commands.md"></section> @@ -103,7 +103,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/github_gitlab.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/github_gitlab.md"></section> @@ -113,7 +113,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/branches.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/branches.md"></section> @@ -123,7 +123,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/forks.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/forks.md"></section> @@ -133,7 +133,7 @@ <section data-separator="^\n\n\n" data-vertical="^\n\n" - data-markdown="slides/thanks.md"></section> + data-background="../img/whiteBG.jpg" data-markdown="slides/thanks.md"></section> diff --git a/slides/installation.md b/slides/installation.md index 8808ed33..564957dc 100644 --- a/slides/installation.md +++ b/slides/installation.md @@ -2,7 +2,35 @@ <img src="img/github_app.png" class="as-is" height="300" /> -[mac.github.com](http://mac.github.com) ou [windows.github.com](http://windows.github.com) +**Linux (Ubuntu)** + +```sh +sudo apt-get install git-all +``` +<br> +**macOS** + +Install *Xcode Command Line Tools* + +<br> +**Windows** + +Follow instructions on *[git-for-windows.github.io](https://git-for-windows.github.io)*. + +**or:** `MobaXTerm` with `git` plugin: *[mobaxterm.mobatek.net](https://mobaxterm.mobatek.net)*. + +<small>More on *[git-scm.com/book/en/v2/Getting-Started-Installing-Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)*</small> + + +## How to start? + +**Linux (Ubuntu)** and **macOS** + +Start the terminal +<br> +**Windows** + +Start `GUI Bash` or, if installed, `MobaXTerm`. ## Configuration diff --git a/slides/list.json b/slides/list.json index 34747f85..00710843 100644 --- a/slides/list.json +++ b/slides/list.json @@ -8,46 +8,55 @@ { "filename": "overview.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "the_terminal.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "what_is_git.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "installation.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "essential_commands.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "github_gitlab.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "branches.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "forks.md", "attr": { + "data-background": "../img/whiteBG.jpg" } }, { "filename": "thanks.md", "attr": { + "data-background": "../img/whiteBG.jpg" } } ] -- GitLab