From ebc5fa699b2b4b81178d6b999e086e8a5df39f45 Mon Sep 17 00:00:00 2001 From: AH-YONG Emjy Date: Tue, 22 Oct 2024 15:39:17 +0400 Subject: [PATCH] emjy --- AHYONG_Emjy/liste.html | 201 +++++++++++++++++++++-------------------- AHYONG_Emjy/test.bat | 33 +++++++ 2 files changed, 136 insertions(+), 98 deletions(-) create mode 100644 AHYONG_Emjy/test.bat diff --git a/AHYONG_Emjy/liste.html b/AHYONG_Emjy/liste.html index ba5435a..d992c2f 100644 --- a/AHYONG_Emjy/liste.html +++ b/AHYONG_Emjy/liste.html @@ -1,16 +1,22 @@ - - - Liste élèves - - - + + + + + + Liste élèves + + + + + +

- + Logo

CENTRE DE

@@ -20,8 +26,7 @@

-
-
+

@@ -29,108 +34,108 @@
- -
-
-

Liste des élèves de CDA8

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NomPrénom
AHOVEYSaint-George
AH-YONGEmjy
BARRETToma
CELEMANIThéo
RAMASSYCheun
DEMONTISMatisse
GRONDINClarel
HOARAUJeremy
MUNIERJerome
PEDREGabriel
NOELThomy
RASSABYLudovic
Dorian
DUCAUROYLou
- -
- +
+

Liste des élèves de CDA8

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NomPrénom
AHOVEYSaint-George
AH-YONGEmjy
BARRETToma
CELEMANIThéo
RAMASSYCheun
DEMONTISMatisse
GRONDINClarel
HOARAUJeremy
MUNIERJerome
PEDREGabriel
NOELThomy
RASSABYLudovic
Dorian
DUCAUROYLou
+
- - - - - - - \ 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