6 lines
71 B
Batchfile
6 lines
71 B
Batchfile
|
|
@echo off
|
||
|
|
cd /d "%~dp0"
|
||
|
|
git add .
|
||
|
|
git commit -m "update"
|
||
|
|
git push
|
||
|
|
pause
|