我如何做一个git show
并显示默认的git show
输出,但没有有什么不同吗?
。
$ git show
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
commit 2668e3608e (HEAD -> master, origin/master, origin/main, origin/HEAD)
Author: Junio C Hamano <gitster@pobox.com>
Date: Tue May 31 19:10:00 2022 -0700
Fast-tracking GitHub CI Windows build fixes.
(注意:我不希望在提交注释之后显示diff)
git show --no-patch
git log --no-patch
git show -s
git log -s
"patch"是一种"差异"类型的术语。
文档:
-s, --no-patch Suppress diff output. Useful for commands like git show that show the patch by default, or to cancel the effect of --patch.
[git show --help
]