This commit is contained in:
2026-03-30 08:11:22 +02:00
parent 27290c3fd9
commit 7cc162a645
2 changed files with 25 additions and 0 deletions

17
AZA_Speichern2.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
cd /d "%~dp0"
cmdkey /delete:git:http://naswinterthur:3005 >nul 2>nul
cmdkey /delete:legacyGeneric:target=git:http://naswinterthur:3005 >nul 2>nul
git add .
git diff --cached --quiet
if %errorlevel%==0 (
echo Keine Aenderungen zum Hochladen.
pause
exit /b
)
git commit -m "update"
git push
pause