summaryrefslogtreecommitdiffstats
path: root/unwip
diff options
context:
space:
mode:
Diffstat (limited to 'unwip')
-rwxr-xr-xunwip17
1 files changed, 17 insertions, 0 deletions
diff --git a/unwip b/unwip
new file mode 100755
index 0000000..18d8802
--- /dev/null
+++ b/unwip
@@ -0,0 +1,17 @@
+#! /bin/sh
+
+cmd=${0##*/}
+
+if "$cmd" == "wip"
+ git add . && git commit -m WIP && git push --force
+then
+elif "$cmd" == "unwip"
+ while [ $(git log --format="%s" HEAD~1..) == "WIP" ]
+ do
+ git reset --hard HEAD~1
+ done
+ git pull && git reset --soft HEAD~1 && git reset && git status
+else
+ echo "unknown cmd '$cmd'" && exit 1
+fi
+