From 5ec134090263363cd5ca2aa4b5f5735dfb8956f7 Mon Sep 17 00:00:00 2001
From: Andrew Johnson
Date: Mon, 8 May 2017 20:45:39 -0500
Subject: [PATCH] Convert ReleaseChecklist commands to git
---
documentation/ReleaseChecklist.html | 34 ++++++++++++++---------------
1 file changed, 16 insertions(+), 18 deletions(-)
diff --git a/documentation/ReleaseChecklist.html b/documentation/ReleaseChecklist.html
index 1cc67794c..f01115e99 100644
--- a/documentation/ReleaseChecklist.html
+++ b/documentation/ReleaseChecklist.html
@@ -89,7 +89,7 @@ the final release version.
| |
Release Manager |
- Set the Feature Freeze date, by which time all Bazaar commits for
+ | Set the Feature Freeze date, by which time all Git commits for
enhancements and new functionality should have been completed. After
this date, commits should only be made to fix problems that show up
during testing. |
@@ -131,7 +131,7 @@ the final release version.
| |
Release Manager |
- Tag the module in Bazaar, using these tag conventions:
+ | Tag the module in Git using these tag conventions:
-
R3.16.1-pren
@@ -143,8 +143,8 @@ the final release version.
- cd ~/base/mirror-3.16
- bzr tag R3.16.1-rc1
+ cd ~/base-3.16
+ git tag -m 'ANJ: Tagged for 3.16.1-rc1' R3.16.1-rc1
|
@@ -154,12 +154,11 @@ the final release version.
Export the tagged version into a tarfile. Note that this command
generates a gzipped tarfile directly from the repository:
- cd ~/base
- bzr export
- --root=base-3.16.1-rc1
- -r tag:R3.16.1-rc1
- base-3.16.1-rc1.tar.gz
- mirror-3.16
+ cd ~/base-3.16
+ git archive
+ --prefix=base-3.16.1-rc1
+ -o base-3.16.1-rc1.tar.gz
+ 3.16.1-rc1
Create a GPG signature file of the tarfile as follows:
@@ -272,10 +271,10 @@ the final release version.
| |
Release Manager |
- Tag the module in Bazaar:
+ | Tag the module in Git:
cd ~/base/mirror-3.16
- bzr tag R3.16.1
+ git tag -m 'ANJ: Tagged for 3.16.1' R3.16.1
|
@@ -285,12 +284,11 @@ the final release version.
Export the tagged version into a tarfile. Note that this command
generates a gzipped tarfile directly from the repository:
- cd ~/base
- bzr export
- --root=base-3.16.1
- -r tag:R3.16.1
- base-3.16.1.tar.gz
- mirror-3.16
+ cd ~/base-3.16
+ git archive
+ --prefix=base-3.16.1
+ -o base-3.16.1.tar.gz
+ 3.16.1
Create a GPG signature file of the tarfile as follows:
| |