使用 atom 作为 Windows 版 Github 的文本编辑器

使用 atom 作为 Windows 版 Github 的文本编辑器

小问题,我使用 atom 文本编辑器,今天我安装了适用于 Windows 的 Github。由于我的所有提交消息都触发了 notepad.exe,因此我使用以下行来更改我的全局编辑器:

 git config --global core.editor atom

现在,每次我尝试提交某些内容时,atom 都会启动并打开指示的文件,但在我的 powershell 窗口中,git 说:

Aborting commit due to empty commit message.

是否有任何指南或配置设置可以让 atom 与 windows 版 github 配合使用?谢谢。

答案1

我在 atom 讨论论坛中找到了一个人建议的解决方案:

 git config --global core.editor 'atom --wait'

相关内容