赞
踩
【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
然后重新设置你的编辑器,以vscode为例:
git config --global core.editor "Code -w"
git config core.editor "Code -w"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。