mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-16 02:40:08 +00:00
23 lines
428 B
Bash
23 lines
428 B
Bash
|
_register() {
|
||
|
if ! git config --global --get-all alias.$1 &>/dev/null; then
|
||
|
git config --global alias.$1 '!a() { if [[ "$1" == "-s" || "$1" == "--scope" ]]; then git commit -m "'$1'(${2}): ${@:3}"; else git commit -m "'$1': ${@}"; fi }; a'
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
aliases=(
|
||
|
'build'
|
||
|
'chore'
|
||
|
'ci'
|
||
|
'docs'
|
||
|
'feat'
|
||
|
'fix'
|
||
|
'perf'
|
||
|
'refactor'
|
||
|
'revert'
|
||
|
'style'
|
||
|
'test'
|
||
|
)
|
||
|
|
||
|
for alias in "${aliases[@]}"; do
|
||
|
_register $alias
|
||
|
done
|