mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-08-08 22:54:42 +02:00
feat(git-commit): create plugin (#9646)
Co-authored-by: K. Akatsuki <thevortexspirit@gmail.com>
This commit is contained in:
committed by
GitHub
parent
f694d5ecc9
commit
1abc1d998a
23
plugins/git-commit/git-commit.plugin.zsh
Normal file
23
plugins/git-commit/git-commit.plugin.zsh
Normal file
@ -0,0 +1,23 @@
|
||||
_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
|
Reference in New Issue
Block a user