Find changes to string variable name that have been committed using 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.
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
精彩评论