diff --git a/Exercice/test_maven/.idea/encodings.xml b/Exercice/test_maven/.idea/encodings.xml
new file mode 100644
index 0000000..15a15b2
--- /dev/null
+++ b/Exercice/test_maven/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Exercice/test_maven/.idea/modules.xml b/Exercice/test_maven/.idea/modules.xml
new file mode 100644
index 0000000..cc5718a
--- /dev/null
+++ b/Exercice/test_maven/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Exercice/test_maven/.idea/test_maven.iml b/Exercice/test_maven/.idea/test_maven.iml
new file mode 100644
index 0000000..d6ebd48
--- /dev/null
+++ b/Exercice/test_maven/.idea/test_maven.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Exercice/test_maven/.idea/vcs.xml b/Exercice/test_maven/.idea/vcs.xml
new file mode 100644
index 0000000..b2bdec2
--- /dev/null
+++ b/Exercice/test_maven/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Exercice/test_maven/.idea/workspace.xml b/Exercice/test_maven/.idea/workspace.xml
new file mode 100644
index 0000000..bf89ff8
--- /dev/null
+++ b/Exercice/test_maven/.idea/workspace.xml
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1550566287778
+
+
+ 1550566287778
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Exercice/test_maven/my-app/pom.xml b/Exercice/test_maven/my-app/pom.xml
new file mode 100644
index 0000000..16f5294
--- /dev/null
+++ b/Exercice/test_maven/my-app/pom.xml
@@ -0,0 +1,81 @@
+
+
+
+ 4.0.0
+
+ com.mycompany.app
+ my-app
+ 1.0-SNAPSHOT
+
+ my-app
+
+ http://www.example.com
+
+
+ UTF-8
+ 1.7
+ 1.7
+
+
+
+
+ junit
+ junit
+ 4.11
+ test
+
+
+ org.projectlombok
+ lombok
+ 1.18.6
+ provided
+
+
+
+
+
+
+
+
+ maven-clean-plugin
+ 3.1.0
+
+
+
+ maven-resources-plugin
+ 3.0.2
+
+
+ maven-compiler-plugin
+ 3.8.0
+
+
+ maven-surefire-plugin
+ 2.22.1
+
+
+ maven-jar-plugin
+ 3.0.2
+
+
+ maven-install-plugin
+ 2.5.2
+
+
+ maven-deploy-plugin
+ 2.8.2
+
+
+
+ maven-site-plugin
+ 3.7.1
+
+
+ maven-project-info-reports-plugin
+ 3.0.0
+
+
+
+
+
diff --git a/Exercice/test_maven/my-app/src/main/java/com/mycompany/app/App.java b/Exercice/test_maven/my-app/src/main/java/com/mycompany/app/App.java
new file mode 100644
index 0000000..77cf3e0
--- /dev/null
+++ b/Exercice/test_maven/my-app/src/main/java/com/mycompany/app/App.java
@@ -0,0 +1,13 @@
+package com.mycompany.app;
+
+/**
+ * Hello world!
+ *
+ */
+public class App
+{
+ public static void main( String[] args )
+ {
+ System.out.println( "Hello World!" );
+ }
+}
diff --git a/Exercice/test_maven/my-app/src/test/java/com/mycompany/app/AppTest.java b/Exercice/test_maven/my-app/src/test/java/com/mycompany/app/AppTest.java
new file mode 100644
index 0000000..81ac345
--- /dev/null
+++ b/Exercice/test_maven/my-app/src/test/java/com/mycompany/app/AppTest.java
@@ -0,0 +1,20 @@
+package com.mycompany.app;
+
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+/**
+ * Unit test for simple App.
+ */
+public class AppTest
+{
+ /**
+ * Rigorous Test :-)
+ */
+ @Test
+ public void shouldAnswerWithTrue()
+ {
+ assertTrue( true );
+ }
+}
diff --git a/Laboratoire/Commande GIT/commande_git.tex b/Laboratoire/Commande GIT/commande_git.tex
new file mode 100644
index 0000000..1480f18
--- /dev/null
+++ b/Laboratoire/Commande GIT/commande_git.tex
@@ -0,0 +1,41 @@
+\documentclass{report}
+
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage[francais]{babel}
+\title{Commandes git usuelles}
+\author{Legrand Bruno}
+\date{An de grâce 2019}
+
+\begin{document}
+\maketitle
+
+\part{Workflow git}
+\chapter{Préparation d'une nouvelle branche}
+\section{Revenir à la branche master}
+git checkout master
+
+\section{faire retourner un fichier dans l'état du dernier commit}
+git fetch upstream
+
+\section{Appliquer les modifications de upstream à sa branche}
+git pull upstream master
+
+\section{Créer \& Changer de branche}
+git checkout -b \og NOM\_DE\_LA\_BRANCHE \fg
+
+
+\chapter{Code finalisé}
+\paragraph{Une fois que le code a été testé et est près nous pouvons le push sur origin}
+
+\section{ajouter le code au prochain commit}
+git add \og . /src monfichier \fg
+
+\section{Envoyer le commit avec un message}
+git commit -m "MON\_MESSAGE"
+
+\section{push le commit de la branch sur le repo origin github}
+git push origin
+
+
+\end{document}
diff --git a/Laboratoire/Commande GIT/git.md b/Laboratoire/Commande GIT/git.md
new file mode 100644
index 0000000..b32768b
--- /dev/null
+++ b/Laboratoire/Commande GIT/git.md
@@ -0,0 +1,27 @@
+### GIT - command
+
+- renevir à la branch master :
+ git checkout master
+
+- faire retourner un fichier dans l'état du dernier commit (annuler une modification d'un fichier :
+ git checkout /CHEMIN/monFichier.xml
+
+- Récupérer les commits qui sont sur le upstream
+ git fetch upstream
+
+- appliquer les modifications à sa branch
+ git pull upstream master
+
+- Créer & Changer de branche
+ git checkout -b
+
+Une fois le code terminer et que les tests passent !
+
+- ajouter le code au prochain commit
+ git add <. /src monFichier ...>
+
+- envoyer le commit avec un message
+ git commit -m "Mon message"
+
+- push le commit de la branch sur le repo origin github
+ git push origin
diff --git a/Laboratoire/Teaching-HEIGVD-RES-2019-Chill b/Laboratoire/Teaching-HEIGVD-RES-2019-Chill
new file mode 160000
index 0000000..bf116db
--- /dev/null
+++ b/Laboratoire/Teaching-HEIGVD-RES-2019-Chill
@@ -0,0 +1 @@
+Subproject commit bf116db8a731ba8b9f0088644a2d21df150253f7
diff --git a/README.pdf b/README.pdf
new file mode 100644
index 0000000..7bc4c54
Binary files /dev/null and b/README.pdf differ