Git 查看最近的一次提交
操作方法
git show
输出效果如下:
commit **************************************** (HEAD -> master)
Author: yourname <yourname@yourdomain.com>
Date: Thu Feb 2 22:56:46 2023 +0800
(your commit message here)
如果这次提交包含文件变更,还会输出 diff 信息。
git show
输出效果如下:
commit **************************************** (HEAD -> master)
Author: yourname <yourname@yourdomain.com>
Date: Thu Feb 2 22:56:46 2023 +0800
(your commit message here)
如果这次提交包含文件变更,还会输出 diff 信息。