diff options
author | neodarz <neodarz@neodarz.net> | 2017-02-03 12:02:52 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-02-03 12:02:52 +0100 |
commit | 9ed8db11a3beecf08e8292d197fd0901e2d33b44 (patch) | |
tree | 317470559a419ea2b7499bcdf5d10ded374d2e0f | |
parent | 8f9f9929052abb86aca4d10fdfd49963e157014a (diff) | |
download | task-git-9ed8db11a3beecf08e8292d197fd0901e2d33b44.tar.xz task-git-9ed8db11a3beecf08e8292d197fd0901e2d33b44.zip |
Edit all the code, now it's commit when task command has argument and only push/pull when I want to do
-rwxr-xr-x | task-git.sh | 46 |
1 files changed, 13 insertions, 33 deletions
diff --git a/task-git.sh b/task-git.sh index db5df12..1962658 100755 --- a/task-git.sh +++ b/task-git.sh @@ -13,6 +13,14 @@ DATA_DIR=${DATA[1]} # Need to expand home dir ~ eval DATA_DIR=$DATA_DIR +# Function for make a commit +make_commit() { + git add . > $LOGFILE + git commit -m "$TASK_COMMAND" > $LOGFILE + echo "Committed" +} + + # Exit if we don't have a tasks data directory if [ ! -e "$DATA_DIR" ]; then echo "Could not load data directory $DATA_DIR." @@ -30,28 +38,21 @@ if ! [ -d "$DATA_DIR/.git" ]; then fi # Push by default -PUSH=1 +PUSH=0 PULL=0 +COMMIT=0 -# Check if --no-push is passed as an argument. -for i in $@ -do - if [ "$i" == "--no-push" ]; then - # Set the PUSH flag, and remove this from the arguments list. - PUSH=0 - shift - fi -done # Check if we are passing something that doesn't do any modifications for i in $1 do case $i in - append|completed|delete|done|due|duplicate|edit|end|modify|prepend|rm|start|stop) - echo "Push" + add|append|completed|delete|done|due|duplicate|edit|end|modify|prepend|rm|start|stop) + make_commit ;; push) echo "Push" + PUSH=1 ;; pull) echo "Pull" @@ -63,23 +64,6 @@ do esac done -# Check if we are passing a command for the second arg (filter for the first) -if [ $PUSH -eq 0 ] -then - for i in $2 - do - case $i in - add|append|completed|delete|done|due|duplicate|edit|end|modify|prepend|rm|start|stop) - PUSH=1 - echo "Push" - ;; - *) - ;; - esac - done -fi - - pushd $DATA_DIR > $LOGFILE # Check if we have a place to push to @@ -89,16 +73,12 @@ if [ -z $GIT_REMOTE ]; then PUSH=0 fi - if [ "$PULL" == 1 ]; then echo "Fetching & Applying updates from $GIT_REMOTE" git fetch && git pull exit 0 fi -# Add to git -git add . > $LOGFILE -git commit -m "$TASK_COMMAND" > $LOGFILE # Push if [ "$PUSH" == 1 ]; then |