mes-admin-windows-release/build.bat

21 lines
345 B
Batchfile
Raw Normal View History

2023-11-03 19:19:19 +08:00
@echo off
setlocal
set repoUrl=ssh://git@git.tool.dwoodauto.com:2221/jason/mes-admin-windows-release.git
set folderPath=E:\Demu\mes-admin-windows-release
cd %folderPath%
echo Adding files...
git add -A
echo Committing changes...
git commit -m "Automatic commit"
echo Pushing to remote repository...
git push %repoUrl%
echo Done.
endlocal