概述

git show 顯示了各種 Git 物件。

對於提交:

顯示提交訊息和引入的更改的差異。

命令 描述
git show 顯示上一次提交
git show @~3 顯示從最後一次提交

對於樹木和斑點:

顯示樹或 blob。

命令 描述
git show @~3: 顯示專案根目錄,因為它是 3 次提交之前(一棵樹)
git show @~3:src/program.js 顯示 src/program.js,因為它是 3 次提交之前(一個 blob)
git show @:a.txt @:b.txt 顯示 a.txt 與當前提交的 b.txt 連線

對於標籤:

顯示標記訊息和引用的物件。