如何复制到剪贴板确切的 git 消息以在另一个提交中使用

How to copy to clipboard exact git message to use in another commit

我必须使用与另一个相同的消息创建一个提交。首先我觉得很简单 运行

git show 7777777777

并从控制台复制消息,但消息很复杂,有多行并且spaces/tabs。

所以我怕在复制粘贴的过程中会遗漏任何东西

是否有命令将给定提交的 git 消息复制到剪贴板?

git commit 有一个 -C | --reuse-message 选项:

git commit -C 7777777777

请注意,它还会从原始提交中复制作者和创建日期。


您还可以使用 git log -1 --format="%B" 7777777777 (或 git show -s --format="%B" 7777777777 )从原始提交中获取提交消息,并将其与 git commit -F 组合:

git log -1 --format="%B" 7777777777 > /tmp/message
git commit -F /tmp/message

# to read the commit message from stdin :
git log -1 --format="%B" 7777777777 | git commit -F -