12 lines
180 B
Batchfile
12 lines
180 B
Batchfile
|
@echo off
|
||
|
REM 添加所有改动
|
||
|
git add .
|
||
|
|
||
|
REM 使用当前的日期和时间作为提交信息
|
||
|
git commit -m "Commit on %date% %time%"
|
||
|
|
||
|
REM 推送到远程仓库
|
||
|
git push
|
||
|
|
||
|
pause
|