added 2 little git scripts

This commit is contained in:
Michael H.G. Schmidt 2021-03-19 18:26:45 +01:00
parent 250460a3ad
commit 947cd6b80b
2 changed files with 17 additions and 0 deletions

14
tools/commit.cmd Normal file
View File

@ -0,0 +1,14 @@
@echo off
IF %1.==. GOTO USAGE
git add .
git commit -a -m %1
git push
GOTO END
:USAGE
echo "usage: %0 <git commit message>"
:END

3
tools/pull.cmd Normal file
View File

@ -0,0 +1,3 @@
@echo off
git pull