Michael J Gruber | d07b00b | 2014-06-23 09:05:49 +0200 | [diff] [blame] | 1 | git-verify-commit(1) |
| 2 | ==================== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-verify-commit - Check the GPG signature of commits |
| 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | [verse] |
Ævar Arnfjörð Bjarmason | 8c9e292 | 2022-10-13 17:39:13 +0200 | [diff] [blame] | 11 | 'git verify-commit' [-v | --verbose] [--raw] <commit>... |
Michael J Gruber | d07b00b | 2014-06-23 09:05:49 +0200 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
Dave Nicolson | bc91316 | 2016-06-16 22:15:44 +0000 | [diff] [blame] | 15 | Validates the GPG signature created by 'git commit -S'. |
Michael J Gruber | d07b00b | 2014-06-23 09:05:49 +0200 | [diff] [blame] | 16 | |
| 17 | OPTIONS |
| 18 | ------- |
brian m. carlson | aeff29d | 2015-06-21 23:14:42 +0000 | [diff] [blame] | 19 | --raw:: |
| 20 | Print the raw gpg status output to standard error instead of the normal |
| 21 | human-readable output. |
| 22 | |
Michael J Gruber | d07b00b | 2014-06-23 09:05:49 +0200 | [diff] [blame] | 23 | -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 | |
| 30 | GIT |
| 31 | --- |
| 32 | Part of the linkgit:git[1] suite |