我最近差点开始学习git和github,我需要帮助:
git - 关闭编辑器窗口后如何解决git commit错误?-LMLPHP
每当我关闭文本编辑器时,它会得到一个错误,而不是添加提交。

最佳答案

你能检查一下编辑器的配置吗?

git config --global core.editor

选中this answer,然后使用git config--global--edit编辑配置文件,以添加引号:
editor = 'atom -w'

同时检查atom/atom issue 16805
特别是自从Atom1.24.0以来,原子在启动后冻结的情况经常发生。
冻结尚未完成,但菜单部分工作,但无法编辑任何已打开的文件或打开新文件。
使用--foreground选项启动Atom时,如果它没有完全冻结,将显示以下消息:
Attempting to call a function in a renderer window that has been closed or released.
Function provided here: Object.<anonymous> (C:\Users\doberkofler.LBITS\AppData\Local\atom\app-1.24.0\resources\app.asar\node_modules\github\lib\worker.js:71:22
Remote event names: destroyed, crashed

08-26 18:11
查看更多