查找已使用 bzr 提交的字符串变量名称的更改
在某些时候,参数 parmX
的计算在我的代码中发生了变化。我怎样才能知道谁、何时以及为什么进行了更改? grep -ir parmX .bzr/
不返回任何内容。
At some point, the calculation of a parameter, parmX
was changed in my code. How can I find out who, when, and why the change was made? grep -ir parmX .bzr/
returns nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜 .bzr 是压缩格式,因此标准 grep 很难搜索它。
也许您应该查看 bazaar grep 插件:我允许您通过存储库进行 grep 操作。还有修订约束等: https://launchpad.net/bzr-grep
I guess the .bzr is in compressed format, so standard grep has trouble searching through it.
Maybe you should checkout the bazaar grep plugin: I allows you to grep through the repository. Also with revision constrains etc: https://launchpad.net/bzr-grep