当前位置:   article > 正文

【git commit 后出现“Aborting commit due to empty commit message“】,修改编辑器_aborting commit due to empty commit message.

aborting commit due to empty commit message.

【git commit 后出现"Aborting commit due to empty commit message"】,修改编辑器

在使用git commit的时候,git commit 弹出编辑器后报错: Aborting commit due to empty commit message.

这是因为没有传递参数-w

直接传递会报错

warning: core.editor has multiple values
error: cannot overwrite multiple values with a single value
Use a regexp, --add or --replace-all to change core.editor.

因此首先删除编辑器的旧条目:

git config --global --unset-all core.editor
git config  --unset-all core.editor
  • 1
  • 2

然后重新设置你的编辑器,以vscode为例:

git config --global core.editor "Code -w"
git config core.editor "Code -w"
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/208224
推荐阅读
相关标签
  

闽ICP备14008679号