使 hg 日志不区分大小写?
我们使用hg log -u MyUser
。
有没有办法让这种情况不敏感?即:因此 hg 将返回 MyUser 或 myuser 的所有变更集。
We use hg log -u MyUser
.
Is there a way to make this case insensitive? Ie: so hg will return all changesets for MyUser or myuser.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有办法使选项不区分大小写,但您可以在命令行上指定多个用户:
我承认这有点乏味,但您可以创建一个 别名(如果您必须多次键入命令)。将其添加到您的 hgrc 文件中,例如:
您现在可以使用
hg mylog
代替整个表达式。I don't think there's a way to make the option case insensitive, but you can specify multiple user on the command line :
I admit this is a little bit tedious, but you can create an alias if you have to type the command many times. Add this to your hgrc file for example :
You can now use
hg mylog
insteand of the entire expression.