Added the command to check Git tag GPG signature

This commit is contained in:
Luc Maisonobe 2014-12-18 21:28:04 +01:00
parent 20c577868c
commit 1a96973119
1 changed files with 8 additions and 2 deletions

View File

@ -203,12 +203,16 @@ Then, assuming the first candidate, the suffix will be "RC1" (this should
be the same as in the "<properties>" in the "pom.xml"), and the command be the same as in the "<properties>" in the "pom.xml"), and the command
will be: will be:
$ git tag -s -m "Creating Commons Math v3.2 RC1 tag." MATH_3_2_RC1 $ git tag -s -m "Creating Apache Commons Math v3.2 RC1 tag." MATH_3_2_RC1
If you have several GPG keys, you may prefer to use "-u keyId" to select a specific If you have several GPG keys, you may prefer to use "-u keyId" to select a specific
key for signing the tag instead of "-s" which select automatically one key key for signing the tag instead of "-s" which select automatically one key
from the configured e-mail address. from the configured e-mail address.
Check the tag GPG signature:
$ git tag -v MATH_3_2_RC1
Push everything (including the tag!) on the Apache repository: Push everything (including the tag!) on the Apache repository:
$ git push --tags $ git push --tags
@ -316,8 +320,10 @@ Call to vote by sending a message to the "dev" ML with subject
"[VOTE][RC1] Release Commons Math 3.2". You can use the following example as "[VOTE][RC1] Release Commons Math 3.2". You can use the following example as
a starting point, replacing the URLs with the appropriate ones: a starting point, replacing the URLs with the appropriate ones:
---------- ----------
Tag: Tag (and how to check its GPG signature):
git clone https://git-wip-us.apache.org/repos/asf/commons-math.git --branch MATH_3_2_RC1 git clone https://git-wip-us.apache.org/repos/asf/commons-math.git --branch MATH_3_2_RC1
cd commons-math
git tag -v MATH_3_2_RC1
Site: Site:
http://people.apache.org/builds/commons/math/3.2/RC1/ http://people.apache.org/builds/commons/math/3.2/RC1/