add auto commit script

This commit is contained in:
UnknownObject
2023-06-16 10:32:45 +08:00
parent 397075bbf2
commit e080ad7aed
+10
View File
@@ -0,0 +1,10 @@
@echo off
set /p message="Input Commit Message> "
git add asrWordlist.txt
git add config.ini
git add serialTTS.txt
git add DownloadTool.exe
git add submit.bat
git commit -m "%message%"
git push origin master
pause