control-freak-ide/scripts/git/gitc
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

22 lines
215 B
Bash

#!/bin/sh
what=.
message="save only"
if [ "$2" ]
then what=$2;
fi
if [ "$1" ]
then message=$1;
fi
echo "commit with messge " $message " on directory:" $what
git commit -m="$message" $what
git push