diff options
author | xyz <gky44px1999@gmail.com> | 2021-10-17 15:39:52 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-10-17 15:39:52 -0700 |
commit | bb83945623fa6cef6c195c98a7776f45974c006c (patch) | |
tree | 69ee346d3f9c7fda5bcbd17ac755625929e733af /.local/bin/gita | |
parent | 965e09f7e577dfde49bd23efc5ee7449e58a674a (diff) |
move work-tree to /, delete mods files, addd cfgL
Diffstat (limited to '.local/bin/gita')
-rwxr-xr-x | .local/bin/gita | 18 |
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 |