使用正则表达式搜索 Git 提交

发布于 2024-12-29 09:13:56 字数 82 浏览 0 评论 0原文

我有一个 Git 存储库,其中包含数百个提交和多个分支。如何搜索包含特定字符串(例如“辅助函数”)的特定提交?理想情况下,字符串可以用正则表达式表示。

I have a Git repository that contains hundreds of commits and several branches. How to search a particular commit that contains a certain string e.g. "helper function"? Ideally, the string can be denoted by a regex.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

十年九夏 2025-01-05 09:13:56

较新版本的 Git 支持 git log -G

git log -G'helper.*function' --full-history --all

此命令将在每个提交的 diff 中搜索正则表达式,并且仅显示引入了与正则表达式匹配的更改的提交。

Newer versions of Git support git log -G<regex>:

git log -G'helper.*function' --full-history --all

This command will search for the regex in the diff of each commit, and only display commits which introduced a change that matches the regex.

︶葆Ⅱㄣ 2025-01-05 09:13:56

积分转到这个答案

git log --all --grep='Build 0051'

# case insensitive
git log --all --grep='Build 0051' -i

Credits go to this answer:

git log --all --grep='Build 0051'

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