{code}
 git branch V7_0_3-branch BUILD-V7_0-branch-2008-6-24
 git push origin V7_0_3-branch
-edit src/CVS_Tags on V7_0-branch to document the new branch.
-git diff to check your change, which should only be to the one file
-git commit -a -m "documented V7_0_3-branch tag for 7.0.3 release"
-git push origin V7_0-branch
 {endcode}
 *::or, if you'd like to make the branch off of the V7_0-branch:
 {code}
 git branch V7_0_3-branch origin/V7_0-branch
 git push origin V7_0_3-branch
-edit src/CVS_Tags on V7_0-branch to document the new branch.
-git diff to check your change, which should only be to the one file
-git commit -a -m "documented V7_0_3-branch tag for 7.0.3 release"
-git push origin V7_0-branch
 {endcode}
+*::either way, be sure to update GitBranchDescriptions to document the new branch
 
 1: Fix the version string in the release branch. However, in this case, the goal is to remove the "=PRE-RELEASE=" and other junk from the version string so you're left with an official version string for the final release.
 *:: =git checkout V7_0_3-branch=
@@ -145,7 +138,7 @@
 *:: =git push origin V7_0_3= (This puts the V7_0_3 tag in the central CONDOR_SRC.git repo.)
 *:: *Note:* Push the TAG name, not the branch name.
 *:: =git checkout V7_0_3-branch=
-*:: modify =src/CVS_Tags= on V7_0_3-branch to document the new tag. This must include the following information:
+*:: update GitBranchDescriptions to document the new branch
 *::: Name of the tag and date the tag was created.
 *::: The branch the tag was created on.
 *::: The official version string included in that release.
@@ -158,8 +151,6 @@
   Original build tag: BUILD-V6_9_5-branch-2007-11-28
 {endcode}
 Note that in this case, everything was actually from the same date, but that's an exception. Usually, the date in the version string and original build tag will differ from the date the release tag itself was added.
-*:: =git commit -a=
-*:: =git push origin V7_0_3-branch= (This pushes the change to src/CVS_Tags.)
 *:: =cd ../CONDOR_DOC=
 *:: =git tag V7_0_3 BUILD-V7_0_3-branch-2008-6-15=
 *:: =git push origin V7_0_3= (This puts the V7_0_3 tag in the central CONDOR_DOC.git repo.)