diff --git a/README.md b/README.md
index 89dee94..48368e2 100755
--- a/README.md
+++ b/README.md
@@ -13,6 +13,14 @@
`npm install prez -g`
`prez --theme black -w`
+### Wishes
+
+* Per slide directory data- attributes
+* support for hljs
+* Adding custom CSS ?
+
+
+
## Licence
All the content is licenced CC-BY Ants
diff --git a/slides/03-git-github/01-git.md b/slides/03-git-github/01-git.md
new file mode 100644
index 0000000..bb4e34e
--- /dev/null
+++ b/slides/03-git-github/01-git.md
@@ -0,0 +1,7 @@
+$background:#4d7e65$
+$transition:slide$
+$background-transition:zoom$
+
+# Git
+
+### organiser son code et son travail
\ No newline at end of file
diff --git a/slides/03-git-github/02-git-github.md b/slides/03-git-github/02-git-github.md
new file mode 100644
index 0000000..e8740ab
--- /dev/null
+++ b/slides/03-git-github/02-git-github.md
@@ -0,0 +1,7 @@
+$background:#4d7e65$
+
+# Git / GitHub
+
+**Git** : gestionnaire de version (sur votre ordinateur)
+
+**GitHub** : plateforme de collaboration (sur le cloud)
\ No newline at end of file
diff --git a/slides/03-git-github/03-git-avantages.md b/slides/03-git-github/03-git-avantages.md
new file mode 100644
index 0000000..0f0db62
--- /dev/null
+++ b/slides/03-git-github/03-git-avantages.md
@@ -0,0 +1,5 @@
+$background:#4d7e65$
+
+Git évite de dupliquer du code pour le versioner, permet de revenir en arrière et surtout permet de toujours savoir où on en est.
+
+Outils indispensable pour organiser son travail sur un gros projet.
\ No newline at end of file
diff --git a/slides/03-git-github/04-github-avantages.md b/slides/03-git-github/04-github-avantages.md
new file mode 100644
index 0000000..97c8ad5
--- /dev/null
+++ b/slides/03-git-github/04-github-avantages.md
@@ -0,0 +1,5 @@
+$background:#4d7e65$
+
+GitHub permet de s'échanger du code, de travailler à plusieurs sur un même projet et de communiquer sur les problèmes.
+
+GitHub permet en outre de déployer des services et de recruter.
\ No newline at end of file
diff --git a/slides/03-git-github/05-environement.md b/slides/03-git-github/05-environement.md
new file mode 100644
index 0000000..4a888a3
--- /dev/null
+++ b/slides/03-git-github/05-environement.md
@@ -0,0 +1,6 @@
+$background:#4d7e65$
+
+## Environnement de travail
+
+* **Editeur** : [Atom](https://atom.io/), [Sublime](http://www.sublimetext.com/3)
+* **Console** : iTerm2 (Mac), [ConEmu](https://conemu.github.io/)
diff --git a/slides/03-git-github/06-configurer-git.md b/slides/03-git-github/06-configurer-git.md
new file mode 100644
index 0000000..7baae15
--- /dev/null
+++ b/slides/03-git-github/06-configurer-git.md
@@ -0,0 +1,19 @@
+$background:#4d7e65$
+
+## Configurer git
+
+
+
+````bash
+# dans le cas où vous êtes derrière un proxy
+git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
+git config --global https.proxy https://proxyuser:proxypwd@proxy.server.com:8080
+
+# si vous ne l'avez jamais fait auparavant
+git config --global user.name "Your Name"
+git config --global user.email "your_email@whatever.com"
+
+# pour windows
+git config --global core.autocrlf true
+git config --global core.safecrlf true
+````
\ No newline at end of file
diff --git a/slides/03-git-github/07-init.md b/slides/03-git-github/07-init.md
new file mode 100644
index 0000000..42e0f11
--- /dev/null
+++ b/slides/03-git-github/07-init.md
@@ -0,0 +1,16 @@
+$background:#4d7e65$
+
+## Init
+
+
+
+````bash
+# créer un dossier
+mkdir testgit
+# s'y déplacer
+cd testgit
+# initialison git
+git init
+````
+
+ce qui crée un dossier `.git` contenant tout ce qui concerne git. C'est léger.
\ No newline at end of file