diff --git a/tools/commit.cmd b/tools/commit.cmd new file mode 100644 index 0000000..587e2a2 --- /dev/null +++ b/tools/commit.cmd @@ -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 " + +:END + diff --git a/tools/pull.cmd b/tools/pull.cmd new file mode 100644 index 0000000..9de7e85 --- /dev/null +++ b/tools/pull.cmd @@ -0,0 +1,3 @@ +@echo off +git pull +