检查 GIT 中代码块的首次显示

发布于 2024-10-11 10:51:52 字数 114 浏览 2 评论 0原文

我想将 @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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流云如水 2024-10-18 10:51:52

尝试 git log -S'line of code here'

如果您愿意,您可以在引号之间输入多行代码,并以所有常用方式自定义日志输出 (--oneline code>、-p 等),并且该命令还可以与 git diffgit 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 with git diff and git format-patch.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文