diff --git a/Excel/prod/Ratio_prod.xlsm b/Excel/prod/Ratio_prod.xlsm index e3d66ae..333549f 100644 Binary files a/Excel/prod/Ratio_prod.xlsm and b/Excel/prod/Ratio_prod.xlsm differ diff --git a/Excel/prod/Ratio_prod_2025_05_30.xlsm b/Excel/prod/Ratio_prod_2025_05_30.xlsm new file mode 100644 index 0000000..08197e8 Binary files /dev/null and b/Excel/prod/Ratio_prod_2025_05_30.xlsm differ diff --git a/Scripts/push_auto.bat b/Scripts/push_auto.bat deleted file mode 100644 index 7c272e5..0000000 --- a/Scripts/push_auto.bat +++ /dev/null @@ -1,26 +0,0 @@ -@echo off -:: Script Git automatique pour Ratio_Inventaires - -cd /d %~dp0 - -:: Affiche l’état -git status - -:: Supprime les fichiers supprimés (au cas où) -git add -u - -:: Ajoute uniquement les fichiers non ignorés (hors Excel/dev) -git add --all -- :!Excel/dev/* - -:: Message de commit avec date et heure -set hh=%time:~0,2% -if "%hh:~0,1%"==" " set hh=0%hh:~1% -set commitmsg=Maj auto %date% %hh%%time:~3,2% -git commit -m "%commitmsg%" - -:: Push vers origin master -git push origin master - -echo. -echo ===== PUSH TERMINE ===== -pause