You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
set /p message=请输入本次提交信息:
|
|
|
|
REM 将变更添加到暂存区
|
|
git add track.py
|
|
git add submit.bat
|
|
|
|
REM 提交变更并添加提交信息
|
|
git commit -m "%message%"
|
|
|
|
REM 推送到远程仓库
|
|
git push origin master
|
|
|
|
REM 等待用户手动关闭窗口
|
|
pause |