-

+
CENTRE DE
@@ -20,8 +26,7 @@
-
-
+
@@ -29,108 +34,108 @@
-
-
-
-
Liste des élèves de CDA8
-
-
-
-
-
- | Nom |
- Prénom |
-
-
-
-
- | AHOVEY |
- Saint-George |
-
-
- | AH-YONG |
- Emjy |
-
-
- | BARRET |
- Toma |
-
-
- | CELEMANI |
- Théo |
-
-
- | RAMASSY |
- Cheun |
-
-
- | DEMONTIS |
- Matisse |
-
-
- | GRONDIN |
- Clarel |
-
-
- | HOARAU |
- Jeremy |
-
-
- | MUNIER |
- Jerome |
-
-
- | PEDRE |
- Gabriel |
-
-
- | NOEL |
- Thomy |
-
-
- | RASSABY |
- Ludovic |
-
-
- |
- Dorian |
-
-
- | DUCAUROY |
- Lou |
-
-
-
-
-
-
-
+
+
Liste des élèves de CDA8
+
+
+
+ | Nom |
+ Prénom |
+
+
+
+
+ | AHOVEY |
+ Saint-George |
+
+
+ | AH-YONG |
+ Emjy |
+
+
+ | BARRET |
+ Toma |
+
+
+ | CELEMANI |
+ Théo |
+
+
+ | RAMASSY |
+ Cheun |
+
+
+ | DEMONTIS |
+ Matisse |
+
+
+ | GRONDIN |
+ Clarel |
+
+
+ | HOARAU |
+ Jeremy |
+
+
+ | MUNIER |
+ Jerome |
+
+
+ | PEDRE |
+ Gabriel |
+
+
+ | NOEL |
+ Thomy |
+
+
+ | RASSABY |
+ Ludovic |
+
+
+ |
+ Dorian |
+
+
+ | DUCAUROY |
+ Lou |
+
+
+
+
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/AHYONG_Emjy/test.bat b/AHYONG_Emjy/test.bat
new file mode 100644
index 0000000..1eec40d
--- /dev/null
+++ b/AHYONG_Emjy/test.bat
@@ -0,0 +1,33 @@
+@echo off
+setlocal
+
+:: Ajouter tous les fichiers
+git add *
+if errorlevel 1 (
+ echo Erreur lors de l'ajout des fichiers.
+ exit /b 1
+)
+
+:: Commit avec un message
+git commit -m "emjy"
+if errorlevel 1 (
+ echo Erreur lors du commit.
+ exit /b 1
+)
+
+:: Tirer les dernières modifications
+git pull
+if errorlevel 1 (
+ echo Erreur lors du pull.
+ exit /b 1
+)
+
+:: Pousser les modifications
+git push
+if errorlevel 1 (
+ echo Erreur lors du push.
+ exit /b 1
+)
+
+echo Les commandes Git ont été exécutées avec succès.
+endlocal