w10install/tools/commit.cmd

15 lines
136 B
Batchfile
Raw Permalink Normal View History

2021-03-19 18:26:45 +01:00
@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