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



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

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

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

git log --grep "TAG_2021_09_0051" -n1

相关内容

  • 没有找到相关文章

最新更新