fix(git-commit): avoid conflict with `aliases` var

Closes #11876
parent bae577d6
_register() {
if ! git config --global --get-all alias.$1 &>/dev/null; then
function _git_commit_register {
if ! git config --global --get-all alias.$1 >/dev/null 2>&1; 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=(
local -a _git_commit_aliases
_git_commit_aliases=(
'build'
'chore'
'ci'
......@@ -18,6 +19,9 @@ aliases=(
'test'
)
for alias in "${aliases[@]}"; do
_register $alias
done
\ No newline at end of file
for _alias in "${_git_commit_aliases[@]}"; do
_git_commit_register $_alias
done
unfunction _git_commit_register
unset _alias
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment