diff --git a/cdpw_tp1_SERRE_PRUNIER.md b/cdpw_tp1_SERRE_PRUNIER.md
index 0f915b486d204b13568d5eb2995dacf2fac2296b..9dc3caacde43928d7c7509685d486e64fe9231c4 100644
--- a/cdpw_tp1_SERRE_PRUNIER.md
+++ b/cdpw_tp1_SERRE_PRUNIER.md
@@ -406,9 +406,45 @@ https://gitlab.isima.fr/mazenovi/2017-F2-Forge
         ```
 0. Merge avec conflit
     1. Céer une nouvelle branche `mybranch-3.6`
+        ```git
+        clserre1@A210PC12:/h/Documents/cdpw $ git checkout SERRE_PRUNIER-3.6
+        Switched to a new branch 'SERRE_PRUNIER-3.6'
+        ```
     0. Notez dans le CR la date et l'heure actuelle (avec la commande `date` par exemple) `*`
+        ```git
+        clserre1@A210PC12:/h/Documents/cdpw $ date > easy_merge
+        clserre1@A210PC12:/h/Documents/cdpw $ git commit -am"3.5.ii"
+        warning: LF will be replaced by CRLF in easy_merge.
+        The file will have its original line endings in your working directory.
+        [SERRE_PRUNIER-3.6 7bababf] 3.5.ii
+         Date: Mon Jan 29 18:55:53 2018 +0100
+         2 files changed, 13 insertions(+), 5 deletions(-)
+        ```
     0. Switchez sur la nouvelle branche et modifiez la réponse précendante dans le CR avec le `*`
+        ```git
+        clserre1@A210PC12:/h/Documents/cdpw $ git checkout SERRE_PRUNIER
+        Switched to branch 'SERRE_PRUNIER'
+        Your branch is ahead of 'master/SERRE_PRUNIER' by 5 commits.
+          (use "git push" to publish your local commits)
+        clserre1@A210PC12:/h/Documents/cdpw $ date > easy_merge
+        ```
     0. Réalisez le merge de la brache `mybranch-3.6` sur `mybranch`. Le prompt change, pourquoi ? Gerer le conflit et commiter.
+        ```git
+        clserre1@A210PC12:/h/Documents/cdpw $ git merge SERRE_PRUNIER-3.6
+        Auto-merging easy_merge
+        CONFLICT (content): Merge conflict in easy_merge
+        Automatic merge failed; fix conflicts and then commit the result.
+        ```
+        Conflit de merge car les deux fichiers ont changé de contenu sur la même ligne (ici l'intégralité du fichier) après la séparation de la branche principale en deux branches.
+        ```git
+        clserre1@A210PC12:/h/Documents/cdpw $ cat easy_merge
+        <<<<<<< HEAD
+        lun. 29 janv. 2018 18:59:12
+        =======
+        lun. 29 janv. 2018 18:57:17
+        >>>>>>> SERRE_PRUNIER-3.6
+        ```
+        On garde soit l'une soit l'autre des lignes (ou les deux, ici c'est possible) et on supprime les lignes ajoutées par git.
 0. Supprimer les branches de feature et afficher toutes les branches restantes, affichez un historique sous forme de graph (`a dog`) de votre repo `*`
 
 ##### 4. Remote
diff --git a/easy_merge b/easy_merge
index 3800fef2bcdb0b15e89548add68b5cf36e8aba98..9e0fc622ad656789b6302e8e8142c822255e9485 100644
--- a/easy_merge
+++ b/easy_merge
@@ -1 +1,5 @@
+<<<<<<< HEAD
 lun. 29 janv. 2018 18:59:12
+=======
+lun. 29 janv. 2018 18:57:17
+>>>>>>> SERRE_PRUNIER-3.6