Maj auto 18/05/2025 0907

This commit is contained in:
2025-05-18 09:07:43 +02:00
parent 7b211205f6
commit 2e187cfc49
3 changed files with 6 additions and 4 deletions

1
.gitignore vendored
View File

@@ -4,6 +4,5 @@ __pycache__/
*.pyc *.pyc
*.log *.log
.DS_Store .DS_Store
# Ignorer tous les fichiers de travail dans Excel/dev # Ignorer tous les fichiers de travail dans Excel/dev
Excel/dev/* Excel/dev/*

BIN
Excel/prod/Ratio_prod.xlsm Normal file

Binary file not shown.

View File

@@ -1,13 +1,16 @@
@echo off @echo off
:: Script Git automatique pour Ratio_Inventairesn :: Script Git automatique pour Ratio_Inventaires
cd /d %~dp0 cd /d %~dp0
:: Affiche létat :: Affiche létat
git status git status
:: Ajoute tous les fichiers :: Supprime les fichiers supprimés (au cas où)
git add . 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 :: Message de commit avec date et heure
set hh=%time:~0,2% set hh=%time:~0,2%