mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
feat(git-commit): add -a | --attention
flag
Refactor function as well to reduce flaws and increase stability Closes #12234 Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
This commit is contained in:
parent
e3216d15c2
commit
3ee108ccb3
1 changed files with 24 additions and 1 deletions
|
@ -28,7 +28,30 @@ for _type in "${_git_commit_aliases[@]}"; do
|
|||
*) _alias=$_type ;;
|
||||
esac
|
||||
|
||||
local _func='!a() { if [ "$1" = "-s" ] || [ "$1" = "--scope" ]; then local scope="$2"; shift 2; git commit -m "'$type'(${scope}): ${@}"; else git commit -m "'$type': ${@}"; fi }; a'
|
||||
local _func='!a() {
|
||||
local _scope _attention _message
|
||||
while [ $# -ne 0 ]; do
|
||||
case $1 in
|
||||
-s | --scope )
|
||||
if [ -z $2 ]; then
|
||||
echo "Missing scope!"
|
||||
return 1
|
||||
fi
|
||||
_scope="$2"
|
||||
shift 2
|
||||
;;
|
||||
-a | --attention )
|
||||
_attention="!"
|
||||
shift 1
|
||||
;;
|
||||
* )
|
||||
_message+=" $1"
|
||||
shift 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
git commit -m "'$_type'${_scope:+(${_scope})}${_attention}:${_message}"
|
||||
}; a'
|
||||
|
||||
git config --global alias.$_alias "$_func"
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue