diff options
author | xyz <gky44px1999@gmail.com> | 2021-09-07 13:09:31 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-09-07 13:09:31 -0700 |
commit | ed8cf0d51437a8ab819a3e9a84433a7b0c652c94 (patch) | |
tree | 9726c207ef61d9006afb74a11af766b448a64895 /.local/bin/gita | |
parent | a9c193649f84bed082595b882435cfd253f5da7a (diff) |
add cfgs
Diffstat (limited to '.local/bin/gita')
-rwxr-xr-x | .local/bin/gita | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.local/bin/gita b/.local/bin/gita index d3a7f0ad..6f5dc76c 100755 --- a/.local/bin/gita +++ b/.local/bin/gita @@ -3,10 +3,11 @@ cmd='git' -while getopts lc f; do +while getopts cls f; do case $f in - l) cmd='cfgl';; c) cmd='cfgc';; + l) cmd='cfgl';; + s) cmd='cfgs';; \?) exit 1;; esac done |