Mercurial 是否支持空提交消息?

发布于 2024-09-11 06:01:01 字数 177 浏览 4 评论 0原文

有没有办法配置 Mercurial 以允许空提交消息?如果您在未输入提交消息的情况下通过 CLI 尝试 hg commit,则提交将被取消,并显示:abort:空提交消息

现在,我知道在没有消息的情况下提交通常被认为是不好的形式,但是 Mercurial 允许这样做吗?

Is there a way to configure Mercurial to allow for empty commit messages? If you try hg commit through the CLI without entering a commit message, the commit is canceled with: abort: empty commit message.

Now, I know that committing without a message is usually considered bad form, but does Mercurial allow it at all?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红尘作伴 2024-09-18 06:01:01

你可以只使用一个空格,但我真的不鼓励这样做:

hg commit -m " "

You can use just a space, but I'd really discourage it:

hg commit -m " "
长亭外,古道边 2024-09-18 06:01:01

如果问题是您不想输入 -m“blah” 部分,您可以随时设置别名。例如在 hgrc 中,

[alias]
qcommit = commit -m "quick commit - no message"

如果您不喜欢 qcommit,那么您可以使用别名来提交,即

[alias]
commit = commit -m "quick commit - no message"

这不会帮助您使用 TortoiseHG,但是它可能会在将数据传递给 Mercurialiteslf 之前验证其输入字段

If the problem is that you don't want to enter the -m "blah" part you can always set up an alias. e.g. in hgrc

[alias]
qcommit = commit -m "quick commit - no message"

If you don't like qcommit then you can alias to commit instead i.e.

[alias]
commit = commit -m "quick commit - no message"

this won't help you with TortoiseHG however which presumebly validates its entry fields before passing data to mercurial iteslf

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文