diff --git a/Pokemon/PeopleProjects/03-Thibaud.afdesign b/Pokemon/PeopleProjects/03-Thibaud.afdesign index b7983ca..9cc3d1a 100644 Binary files a/Pokemon/PeopleProjects/03-Thibaud.afdesign and b/Pokemon/PeopleProjects/03-Thibaud.afdesign differ diff --git a/Pokemon/PeopleProjects/04-Beatrice.afdesign b/Pokemon/PeopleProjects/04-Beatrice.afdesign index 9b1c6fb..33ae412 100644 Binary files a/Pokemon/PeopleProjects/04-Beatrice.afdesign and b/Pokemon/PeopleProjects/04-Beatrice.afdesign differ diff --git a/Pokemon/PeopleProjects/05-Sylvie.afdesign b/Pokemon/PeopleProjects/05-Sylvie.afdesign index edceaec..0470cb1 100644 Binary files a/Pokemon/PeopleProjects/05-Sylvie.afdesign and b/Pokemon/PeopleProjects/05-Sylvie.afdesign differ diff --git a/Pokemon/PeopleProjects/06-Quentin.afdesign b/Pokemon/PeopleProjects/06-Quentin.afdesign index b6eed13..86e2089 100644 Binary files a/Pokemon/PeopleProjects/06-Quentin.afdesign and b/Pokemon/PeopleProjects/06-Quentin.afdesign differ diff --git a/Pokemon/PeopleProjects/07-Ambre.afdesign b/Pokemon/PeopleProjects/07-Ambre.afdesign index 5817165..c4ed29a 100644 Binary files a/Pokemon/PeopleProjects/07-Ambre.afdesign and b/Pokemon/PeopleProjects/07-Ambre.afdesign differ diff --git a/Pokemon/PeopleProjects/08-Aubin.afdesign b/Pokemon/PeopleProjects/08-Aubin.afdesign index 9c27ee8..5f8e5c0 100644 Binary files a/Pokemon/PeopleProjects/08-Aubin.afdesign and b/Pokemon/PeopleProjects/08-Aubin.afdesign differ diff --git a/Pokemon/PeopleProjects/09-Pierrette.afdesign b/Pokemon/PeopleProjects/09-Pierrette.afdesign index ecac055..0b1f2c3 100644 Binary files a/Pokemon/PeopleProjects/09-Pierrette.afdesign and b/Pokemon/PeopleProjects/09-Pierrette.afdesign differ diff --git a/Pokemon/PeopleProjects/10-Christian.afdesign b/Pokemon/PeopleProjects/10-Christian.afdesign index 29d3478..5d9a12d 100644 Binary files a/Pokemon/PeopleProjects/10-Christian.afdesign and b/Pokemon/PeopleProjects/10-Christian.afdesign differ diff --git a/Pokemon/PeopleProjects/66-SAM.afdesign b/Pokemon/PeopleProjects/66-SAM.afdesign index baa4766..b5f108c 100644 Binary files a/Pokemon/PeopleProjects/66-SAM.afdesign and b/Pokemon/PeopleProjects/66-SAM.afdesign differ diff --git a/git-commit.bat b/git-commit.bat new file mode 100644 index 0000000..4631885 --- /dev/null +++ b/git-commit.bat @@ -0,0 +1,54 @@ +@echo off +REM Script pour automatiser git add, commit et push +REM Usage: git-commit.bat "votre message de commit" + +REM Vérifier si un message de commit a été fourni +if "%~1"=="" ( + echo Erreur: Veuillez fournir un message de commit. + echo Usage: git-commit.bat "votre message de commit" + exit /b 1 +) + +REM Récupérer le message de commit depuis les arguments +set "COMMIT_MESSAGE=%~1" + +echo Execution des commandes git... +echo ---------------------------------------- + +REM git add . +echo 1. Ajout de tous les fichiers ^(git add .^) +git add . + +REM Vérifier si git add a réussi +if %errorlevel% equ 0 ( + echo ✓ git add . - Succes +) else ( + echo ✗ git add . - Echec + exit /b 1 +) + +REM git commit +echo 2. Commit avec le message: "%COMMIT_MESSAGE%" +git commit -m "%COMMIT_MESSAGE%" + +REM Vérifier si git commit a réussi +if %errorlevel% equ 0 ( + echo ✓ git commit - Succes +) else ( + echo ✗ git commit - Echec + exit /b 1 +) + +REM git push +echo 3. Push vers le repository distant +git push + +REM Vérifier si git push a réussi +if %errorlevel% equ 0 ( + echo ✓ git push - Succes + echo ---------------------------------------- + echo Toutes les operations git ont ete effectuees avec succes ! +) else ( + echo ✗ git push - Echec + exit /b 1 +) \ No newline at end of file diff --git a/git-commit.sh b/git-commit.sh new file mode 100644 index 0000000..bbeee04 --- /dev/null +++ b/git-commit.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +# Script pour automatiser git add, commit et push +# Usage: ./git-commit.sh "votre message de commit" + +# Vérifier si un message de commit a été fourni +if [ $# -eq 0 ]; then + echo "Erreur: Veuillez fournir un message de commit." + echo "Usage: ./git-commit.sh \"votre message de commit\"" + exit 1 +fi + +# Récupérer le message de commit depuis les arguments +COMMIT_MESSAGE="$1" + +echo "Exécution des commandes git..." +echo "----------------------------------------" + +# git add . +echo "1. Ajout de tous les fichiers (git add .)" +git add . + +# Vérifier si git add a réussi +if [ $? -eq 0 ]; then + echo "✓ git add . - Succès" +else + echo "✗ git add . - Échec" + exit 1 +fi + +# git commit +echo "2. Commit avec le message: \"$COMMIT_MESSAGE\"" +git commit -m "$COMMIT_MESSAGE" + +# Vérifier si git commit a réussi +if [ $? -eq 0 ]; then + echo "✓ git commit - Succès" +else + echo "✗ git commit - Échec" + exit 1 +fi + +# git push +echo "3. Push vers le repository distant" +git push + +# Vérifier si git push a réussi +if [ $? -eq 0 ]; then + echo "✓ git push - Succès" + echo "----------------------------------------" + echo "Toutes les opérations git ont été effectuées avec succès !" +else + echo "✗ git push - Échec" + exit 1 +fi \ No newline at end of file