Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
“git rebase”命令显示了一些提交 id 的列表,以便为它们选择操作;问题是所有历史消息都是相同的(空的),我不知道它们如何与 git gui 中显示的 SHA1 ID 相关联。有没有办法通过 git rebase 显示的这个 id 查看提交的内容?
git show 应该这样做
git show
例子
git show 8e222c8
更多信息
对于提交,它显示日志消息和文本差异。它还提出 由 git diff-tree --cc 生成的特殊格式的合并提交。