From 1e1ea38b8eabedc97a9a6629246c9371fc1d7858 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 23 Aug 2016 10:52:32 +0100 Subject: [PATCH] docs: release: add tag signing command --- docs/random/release | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/random/release b/docs/random/release index 29d85fa..38b677d 100644 --- a/docs/random/release +++ b/docs/random/release @@ -106,11 +106,12 @@ RELEASE PROCEDURE: - release: - 'git commit -a' in the tree - - tag tree - for example for 1.0.42 : - git tag -a -m 'Release 1.0.42' 1.0.42 - Make sure to use the -a option to create an *annotated* tag: 'git describe' - should show '1.0.42' + - tag tree. Tags should be GPG signed. + Example: creating a 1.0.42 tag: + Signed : git tag -s -m 'Release 1.0.42' 1.0.42 (may prompt for passphrase) + Unsigned : git tag -a -m 'Release 1.0.42' 1.0.42 + Check: 'git describe' should show '1.0.42' and 'git show 1.0.42' should + show the PGP signature attached to the tag if it was signed. - bump nano number in configure.ac, commit - sync source and packages to website + run /bin/data-put in www -- 2.7.4