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:如何阅读最后的提交评论?
如何从命令行查看最后一个承诺的评论
您可以使用git log显示过去提交的日志。如果只想查看最后一次提交,可以使用git log -1. 相同的模式适用于任何数量的过去提交。因此,git log -5将显示过去的 5 次提交。
git log
git log -1
git log -5
你应该会看到所有带有git log作者、日期和评论的旧提交。