jFuzzyLogic/git/commit
2014-12-19 08:33:56 -05:00

16 lines
165 B
Bash
Executable File

#!/bin/sh -e
# ./scripts/clean.sh
comment="$1"
if [ -z "$comment" ]
then
comment="Project updated"
fi
git add -A .
git commit -a -m "$comment"
git push origin