gpg(docs): use correct --verify syntax

The gpg --verify usage example within the 'gpg.program' variable reference provides an incorrect example of the gpg --verify command arguments. The command argument order, when providing both a detached signature and data, should be signature first and data second: https://gnupg.org/documentation/manuals/gnupg/Operational-GPG-Commands.html Signed-off-by: Robert Morgan <robert.thomas.morgan@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Robert Morgan committed Jul 12, 2019 at 08:33 UTC f7bf24d4dde9b5ff1bded664864feb7afb7d1c6b
1 file changed +1 -1
Documentation/config/gpg.txt
+1 -1
@@ -2,7 +2,7 @@ gpg.program::
2 Use this custom program instead of "`gpg`" found on `$PATH` when
3 making or verifying a PGP signature. The program must support the
4 same command-line interface as GPG, namely, to verify a detached
5 - signature, "`gpg --verify $file - <$signature`" is run, and the
5 + signature, "`gpg --verify $signature - <$file`" is run, and the
6 program is expected to signal a good signature by exiting with
7 code 0, and to generate an ASCII-armored detached signature, the
8 standard input of "`gpg -bsau $key`" is fed with the contents to be