From c32693430ea6368abc0f393a27388e9d549a07cc Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Mon, 24 Sep 2001 15:07:06 +0000 Subject: [PATCH] Script to insert branch tags git-svn-id: https://svn.dealii.org/trunk@5047 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/scripts/cvs-create-branch | 33 ++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 deal.II/common/scripts/cvs-create-branch diff --git a/deal.II/common/scripts/cvs-create-branch b/deal.II/common/scripts/cvs-create-branch new file mode 100755 index 0000000000..a868b30381 --- /dev/null +++ b/deal.II/common/scripts/cvs-create-branch @@ -0,0 +1,33 @@ +#!/bin/sh + +if (test ! -r configure -a ! -d deal.II); then + echo Please call in deal.II home directory + exit 1 +fi + +CVS='cvs' + +###################################################################### +# Create a branch for a new release. +###################################################################### +# Invocation +# cvs-create-branch major minor +# where major and minor are the two leftmost release numbers +###################################################################### +# 1. Create base tag +###################################################################### + +$CVS tag Base-$1-$2 + +###################################################################### +# 2. Create branch tag +###################################################################### + +$CVS tag -r Base-$1-$2 -b Branch-$1-$2 + +###################################################################### +# 3. Remove sensitive files and directories from branch +###################################################################### + +$CVS tag -d Branch-$1-$2 doc/RELEASE \ + deal.II/include/multigrid deal.II/source/multigrid -- 2.39.5