From: bangerth Date: Fri, 7 Sep 2007 00:10:44 +0000 (+0000) Subject: Remove now outdated file X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca47bd127533f33d5729e30ffd61103c4f4c2105;p=dealii-svn.git Remove now outdated file git-svn-id: https://svn.dealii.org/trunk@15144 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/scripts/cvs-create-branch b/deal.II/common/scripts/cvs-create-branch deleted file mode 100755 index cc525d57d3..0000000000 --- a/deal.II/common/scripts/cvs-create-branch +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -if (test ! -r configure -a ! -d deal.II); then - echo Please call in deal.II home directory - exit 1 -fi - -if (test ! -d tests); then - echo Please checkout tests in order to tag consistently -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