获取包含特定字符串的最新提交

Get latest commit which contains a particular string

我想获取包含字符串的最新提交。 例如

String = TAG_2021_09_0051

我已经尝试了 git log --grep "TAG_2021_09_0051" 这给了我以下输出,因为字符串存在于两个提交中。但是我想要从中获取提交 ID 的最新提交。

commit 12345678
Author: none
Date:   Fri Oct 15 21:39:56 2016 +0000

    @: 1234 - TAG_2021_09_0051

commit 45678965
Author: none
Date:   Fri Oct 14 21:39:56 2016 +0000

    @: 1234 - TAG_2021_09_0051

有什么方法可以获取包含特定字符串的最新 git 提交,即使该字符串存在于多个提交中?

实际输出应该低于commit

commit 12345678
    Author: none
    Date:   Fri Oct 15 21:39:56 2016 +0000
    
        @: 1234 - TAG_2021_09_0051

从 git 日志文档中您需要 -n 选项 (https://git-scm.com/docs/git-log):

git log --grep "TAG_2021_09_0051" -n1