added 2 little git scripts
This commit is contained in:
parent
250460a3ad
commit
947cd6b80b
14
tools/commit.cmd
Normal file
14
tools/commit.cmd
Normal 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
3
tools/pull.cmd
Normal file
@ -0,0 +1,3 @@
|
||||
@echo off
|
||||
git pull
|
||||
|
Loading…
Reference in New Issue
Block a user