From: Guido Kanschat Date: Mon, 24 Sep 2001 15:07:06 +0000 (+0000) Subject: Script to insert branch tags X-Git-Tag: v8.0.0~18751 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c32693430ea6368abc0f393a27388e9d549a07cc;p=dealii.git Script to insert branch tags git-svn-id: https://svn.dealii.org/trunk@5047 0785d39b-7218-0410-832d-ea1e28bc413d --- 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