Mercurial 可以打印命令成功消息而不是无响应吗?
Mercurial 可以在输出提示中打印命令成功消息而不是无响应吗?
Can Mercurial print command success messages instead of no response in the output prompt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它返回一个值,因此您可以将其包装在脚本中。
It returns a value, hence you can wrap it around a script.
你可以写
post-
hooks< /a> 在成功的命令中输出你想要的任何内容。但我不知道这样做有什么好处。书有一个关于钩子执行几乎正是你想要的,但有提交
。请注意,使用命令后挂钩,您不需要检查结果是否成功,因为只有在命令成功时才会运行挂钩。
you could write
post-<command>
hooks to output whatever you want on succesful commands. I don't see what the benefit would be however.the book has a tutorial on hooks doing almost exactly what you want but with commit
. note with a post-command hook you shouldn't need to check the result for success as the hook will only be run if the command was successful.