You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by Apache Wiki <wi...@apache.org> on 2013/10/02 12:15:49 UTC

[Cordova Wiki] Update of "CuttingReleases" by MarcelKinard

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cordova Wiki" for change notification.

The "CuttingReleases" page has been changed by MarcelKinard:
https://wiki.apache.org/cordova/CuttingReleases?action=diff&rev1=62&rev2=63

Comment:
added instructions on moving git tags

  
  More information for release engineers can be found at [[http://www.apache.org/dev/release]].
  
+ == Moving Tags ==
+ 
+ If you need to move a tag before the release, here is how to do that:
+ 
+ {{{
+ $ git tag -d 3.1.0
+ Deleted tag '3.1.0' (was 2a9bc20)
+ $ git push origin :refs/tags/3.1.0
+ To https://git-wip-us.apache.org/repos/asf/cordova-docs.git
+  - [deleted]         3.1.0
+ $ git tag 3.1.0 7cf9fea03d7d02a13aef97a09a459e8128bd3198
+ $ git push origin 3.1.0
+ Total 0 (delta 0), reused 0 (delta 0)
+ To https://git-wip-us.apache.org/repos/asf/cordova-docs.git
+  * [new tag]         3.1.0 -> 3.1.0
+ }}}
+ 
+ Then send a note to the mailing list:
+ 
+ {{{
+ To verify you have the updated tag in your local clone, doing a "git rev-parse 3.1.0" in cordova-docs should reply with "7cf9fea03d7d02a13aef97a09a459e8128bd3198". If it is wrong, do "git fetch --tags".
+ }}}
+ 
  = Official Apache Releases =
  
  An official source release contains the source code for the repositories of the Apache Cordova platform, the signing keys and various checks to prove the validity of the release.