检查 GIT 中代码块的首次显示
我想将 @since
参数添加到我的类方法的文档块中,如何轻松找到在类中引入该给定方法的第一个提交(而不是像 gitblame
那样最后修改)代码> ) ?
I would like to add @since
params to my docblocks of class methods, how I can easily find first commit that have introduced that given method in class (not last modified like with git blame
) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
git log -S'line of code here'
如果您愿意,您可以在引号之间输入多行代码,并以所有常用方式自定义日志输出 (
--oneline
code>、-p
等),并且该命令还可以与git diff
和git format-patch
一起使用。Try
git log -S'line of code here'
You can enter multiple lines of code between the quotes if you wish, and customise log output in all the usual ways (
--oneline
,-p
etc.), and the command will also work withgit diff
andgit format-patch
.