Added both the -p and -b options

pull/4/head
Matthew McGowan 12 years ago
parent 218872eee8
commit 2666870800

@ -28,6 +28,9 @@
# the inotify-tools (See https://github.com/rvoicilas/inotify-tools )
#
REMOTE=""
BRANCH="master"
shelp () {
echo "usage: $0 target [-p remote [-b branch]]"
}
@ -37,6 +40,16 @@ if [ -z $1 ]; then
exit
fi
while getopts b:hp: option
do
case "${option}"
in
b) BRANCH=${OPTARG};;
h) shelp; exit;;
p) REMOTE=${OPTARG};;
esac
done
# Check for both git and inotifywait and generate an error
# if either don't exist or you cannot run them
@ -82,4 +95,12 @@ while true; do
cd $TARGETDIR #CD into right dir
git add $GITADD #add file(s) to index
git commit$GITINCOMMAND -m"${CCPREPEND}(${DATE})${CCAPPEND}" # construct commit message and commit
if [ ! -n "$REMOTE" ]; then
if [ -n "$BRANCH" ]; then
git push $REMOTE
else
git push $REMOTE $BRANCH
fi
fi
done

Loading…
Cancel
Save