From a67572b36a41950dbec8826de80e7f610b5465e6 Mon Sep 17 00:00:00 2001 From: Laurent Heirendt <laurent.heirendt@uni.lu> Date: Thu, 12 Jan 2017 15:29:51 +0100 Subject: [PATCH] Removing parts-* --- part-2-git-intro.md | 79 ------------------------------------------ part-3-installation.md | 25 ------------- 2 files changed, 104 deletions(-) delete mode 100644 part-2-git-intro.md delete mode 100644 part-3-installation.md diff --git a/part-2-git-intro.md b/part-2-git-intro.md deleted file mode 100644 index 5d2c08dd..00000000 --- a/part-2-git-intro.md +++ /dev/null @@ -1,79 +0,0 @@ -## Overview - -0. The Linux Terminal -1. What is `git`? Why do I need it? (5 min) -2. GitHub and GitLab (5min) - * Practical session (5 min) - - GitLab interface - - GitHub interface -3. The 5 essential commands (10 min) - * Practical session (15 min) - - init - - clone - - add - - -4. Branches (10 min) - * Practical session (10 min) -5. Forks (10 min) - * Practical session (10 min) -6. Evaluation (10 min) - - -## The Linux Terminal - -Starting the terminal presents itself with a line where you can enter a command: -```sh -michael@myComputer> -``` -Often written, for covenience, as: -```sh -$ -``` -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 -```sh -$ ls -``` - -Change the directory to a specific folder -```sh -$ cd myDirectory -``` - -Change the directory 1 level and 2 levels up -```sh -$ cd .. -$ cd ../.. -``` -Create a directory -```sh -$ mkdir myNewDirectory -``` - - -## What is `git`? Why do I need it? - - - - - -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'. diff --git a/part-3-installation.md b/part-3-installation.md deleted file mode 100644 index c5d17b12..00000000 --- a/part-3-installation.md +++ /dev/null @@ -1,25 +0,0 @@ -## Installation - -<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) - -note: - Les participants téléchargent le logiciel Github + installation. - - -## Configuration - -```shell -$ git config --global user.name "Sebastien Saunier" -$ git config --global user.email "seb@saunier.me" -$ git config -l -``` - - -## Prêt ? - -```shell -$ git --version -# git version 1.8.5 -``` -- GitLab