From 9e89feba71ee8791c263198c0f25d90ce0730111 Mon Sep 17 00:00:00 2001 From: springmeyer Date: Wed, 22 Aug 2012 14:19:59 -0700 Subject: [PATCH] use annotated tags --- MapnikReleaseSteps.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MapnikReleaseSteps.md b/MapnikReleaseSteps.md index 3aab897..53ebf97 100644 --- a/MapnikReleaseSteps.md +++ b/MapnikReleaseSteps.md @@ -68,9 +68,11 @@ git push ### Tagging +Note: we use [annotated tags](http://stackoverflow.com/questions/4971746/why-should-i-care-about-lightweight-vs-annotated-tags/4971817#4971817) below instead of lightweight tags + ```sh MAPNIK_VERSION=`mapnik-config --version` -git tag "v${MAPNIK_VERSION}" -m "tagging v${MAPNIK_VERSION}" +git tag --annotate "v${MAPNIK_VERSION}" -m "tagging v${MAPNIK_VERSION}" git push --tags ```