gpt4 book ai didi

git - 在 git 中打印给定提交的提交消息

转载 作者:IT王子 更新时间:2023-10-29 01:15:23 26 4
gpt4 key购买 nike

我需要一个管道命令来打印一个给定提交的提交消息 - 仅此而已。

最佳答案

这不是“管道”,但它会完全按照您的意愿行事:

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

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

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

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

关于git - 在 git 中打印给定提交的提交消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3357280/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com