`bzr status`:隐藏未知文件?
有没有办法让 bzr status 忽略未知文件并仅显示添加/修改/删除的文件?
我已检查了 bzr 帮助状态
和用户指南,除了使用 bzrignore
忽略所有未知文件之外,找不到其他解决方案。还有其他解决方案吗?
Is there a way to have bzr status
ignore unknown files and only display the added/modified/deleted files?
I have checked bzr help status
and the User Guide, and can not find a solution other than ignoring all of the unknown files with bzr ignore
. Is there another solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看帮助,您可能会轻松找到
bzr status -V
。-V
参数表示仅显示受版本控制的文件。If you checked the help, you could have found
bzr status -V
easily. The-V
parameter means that only files under version control are shown.