0

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

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 12345678
    Author: none
    Date:   Fri Oct 15 21:39:56 2016 +0000
    
        @: 1234 - TAG_2021_09_0051
4

1 回答 1

0

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

git log --grep "TAG_2021_09_0051" -n1
于 2021-12-07T19:09:05.397 回答