我需要一个管道命令来打印一个给定提交的提交消息——不多也不少。


当前回答

使用git-rev-list打印提交消息

Git-rev-list是让你打印提交消息的管道命令。

像这样使用它。

git rev-list --format=%B --max-count=1 <commit> | tail +2

——format=%B:显示消息(主题%s + %n%n +正文%B) ——max-count=1:我们只对一次提交感兴趣 <commit>: a sha, HEAD, branch-name, tag-name, branch1…branch2等等。 | tail +2:第一行是提交sha,跳过它

它比git log或git show快得多。

其他回答

使用git-rev-list打印提交消息

Git-rev-list是让你打印提交消息的管道命令。

像这样使用它。

git rev-list --format=%B --max-count=1 <commit> | tail +2

——format=%B:显示消息(主题%s + %n%n +正文%B) ——max-count=1:我们只对一次提交感兴趣 <commit>: a sha, HEAD, branch-name, tag-name, branch1…branch2等等。 | tail +2:第一行是提交sha,跳过它

它比git log或git show快得多。

它不是“管道”,但它会做你想要的:

$ git log --format=%B -n 1 <commit>

如果你绝对需要一个“管道”命令(不知道为什么这是一个要求),你可以使用rev-list:

$ git rev-list --format=%B --max-count=1 <commit>

尽管rev-list除了提交消息外还会打印出commit sha(在第一行)。

我用shortlog来表示:

$ git shortlog master..
Username (3):
      Write something
      Add something
      Bump to 1.3.8 

不是管道,但我有这些在我的。gitconfig:

lsum = log -n 1 --pretty=format:'%s'
lmsg = log -n 1 --pretty=format:'%s%n%n%b'

这是“最后的总结”和“最后的信息”。您可以提供一个提交来获得该提交的摘要或消息。(我使用1.7.0.5,所以没有% b)

在git中单独获得我的最后一个提交消息

git log——format=%B -n 1 $(git log -1——pretty=format:"%h") | cat -