R Studio - 由于提交消息为空而中止提交 - 使用 blogdown 部署时
R Studio - Aborting commit due to empty commit message - when deploying with blogdown
I'm following this YouTube guide 关于使用 GitHub 和 Netlify 部署 R blogdown 站点。在 8:00
分钟标记处,我必须提交更改。当我使用 R Studio 的向导时,出现此错误:
>>> git commit -F /tmp/Cjwox9JEZ8/git-commit-message-931l81328473.txt
Aborting commit due to empty commit message.
我应该怎么做才能前进?我的 OS 是 Ubuntu 18.04,但我也可以访问 Windows 10.
注意:错误信息是same when using Git directly in command line.
这就是视频清楚地显示在 R Studio 中输入消息的原因。
只有 git commit --allow-empty-message
允许您跳过输入消息(仅在 CLI 中,而不是在 R Studio 中),并且该选项仅供外部 SCM 接口脚本使用。
I'm following this YouTube guide 关于使用 GitHub 和 Netlify 部署 R blogdown 站点。在 8:00
分钟标记处,我必须提交更改。当我使用 R Studio 的向导时,出现此错误:
>>> git commit -F /tmp/Cjwox9JEZ8/git-commit-message-931l81328473.txt
Aborting commit due to empty commit message.
我应该怎么做才能前进?我的 OS 是 Ubuntu 18.04,但我也可以访问 Windows 10.
注意:错误信息是same when using Git directly in command line.
这就是视频清楚地显示在 R Studio 中输入消息的原因。
只有 git commit --allow-empty-message
允许您跳过输入消息(仅在 CLI 中,而不是在 R Studio 中),并且该选项仅供外部 SCM 接口脚本使用。