blob: aee4c40eac4666ebacb4cc2fd67e99b8d7e2fbfb [file] [log] [blame]
Michael J Gruberd07b00b2014-06-23 09:05:49 +02001git-verify-commit(1)
2====================
3
4NAME
5----
6git-verify-commit - Check the GPG signature of commits
7
8SYNOPSIS
9--------
10[verse]
Ævar Arnfjörð Bjarmason8c9e2922022-10-13 17:39:13 +020011'git verify-commit' [-v | --verbose] [--raw] <commit>...
Michael J Gruberd07b00b2014-06-23 09:05:49 +020012
13DESCRIPTION
14-----------
Dave Nicolsonbc913162016-06-16 22:15:44 +000015Validates the GPG signature created by 'git commit -S'.
Michael J Gruberd07b00b2014-06-23 09:05:49 +020016
17OPTIONS
18-------
brian m. carlsonaeff29d2015-06-21 23:14:42 +000019--raw::
20 Print the raw gpg status output to standard error instead of the normal
21 human-readable output.
22
Michael J Gruberd07b00b2014-06-23 09:05:49 +020023-v::
24--verbose::
25 Print the contents of the commit object before validating it.
26
27<commit>...::
28 SHA-1 identifiers of Git commit objects.
29
30GIT
31---
32Part of the linkgit:git[1] suite