Maj auto 18/05/2025 0830

This commit is contained in:
2025-05-18 08:30:52 +02:00
parent deed24193c
commit 2f9de9c6e4

23
Scripts/push_auto.bat Normal file
View File

@@ -0,0 +1,23 @@
@echo off
:: Script Git automatique pour Ratio_Inventairesn
cd /d %~dp0
:: Affiche létat
git status
:: Ajoute tous les fichiers
git add .
:: 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