mirror of
http://123.113.99.28:3000/azurice/Voyager.git
synced 2026-01-28 07:34:35 +08:00
6 lines
112 B
Batchfile
6 lines
112 B
Batchfile
@echo off
|
|
set /p commit_message=Enter commit message:
|
|
git add .
|
|
git commit -m "%commit_message%"
|
|
git push
|
|
pause |