summaryrefslogtreecommitdiff
path: root/.local/bin/gita
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/gita')
-rwxr-xr-x.local/bin/gita18
1 files changed, 0 insertions, 18 deletions
diff --git a/.local/bin/gita b/.local/bin/gita
deleted file mode 100755
index a3d0dbc9..00000000
--- a/.local/bin/gita
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-# note message string must come after options
-
-cmd='git'
-
-while getopts clLsS f; do
- case $f in
- c|l|L|s|S) cmd="cfg -$f";;
- \?) exit 1;;
- esac
-done
-shift $((OPTIND-1))
-
-mes="${1:-refactor}"
-
-$cmd add -u
-$cmd commit -m "$mes"
-$cmd push