浏览代码

fix(git-commit): add omz version check

Carlo Sala 3 月之前
父节点
当前提交
b6c1de87b0
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      plugins/git-commit/git-commit.plugin.zsh

+ 3 - 4
plugins/git-commit/git-commit.plugin.zsh

@@ -1,7 +1,8 @@
-if git config --global --get-all alias.$_alias >/dev/null 2>&1 \
-  && ! git config --global --get-all oh-my-zsh.git-commit-alias >/dev/null 2>&1; then
+local _rev="$(git -C $ZSH rev-parse HEAD 2> /dev/null)"
+if [[ $_rev == $(git config --global --get oh-my-zsh.git-commit-alias 2> /dev/null) ]]; then
   return
 fi
+git config --global oh-my-zsh.git-commit-alias "$_rev"
 
 local -a _git_commit_aliases
 _git_commit_aliases=(
@@ -55,5 +56,3 @@ git commit -m "'$_type'${_scope:+(${_scope})}${_attention}:${_message}"
 
   git config --global alias.$_alias "$_func"
 done
-
-git config --global oh-my-zsh.git-commit-alias "true"