Minor reorg.
1 parent 9f643aa commit 240ec24f5ba39d7c6032b439003ce5194c59f3f2
@tundra tundra authored on 30 May 2012
Showing 1 changed file
View
8
cvscreate.sh
#!/bin/sh
# cvscreate.sh - Create And Checkin A New CVS Project
# Copyright (c) 2012 TundraWare Inc,, Des Plaines, IL USA
# $Id: cvscreate.sh,v 1.104 2012/05/30 16:45:15 tundra Exp $
# $Id: cvscreate.sh,v 1.105 2012/05/30 16:58:18 tundra Exp $
 
#####
# Constants And Literals
#####
# Create The Project
#####
 
cvs import -m "$1" $PROJNAME $ORGNAME start
cd ..
mv $PROJNAME $PROJNAME.orig
cvs co $PROJNAME
 
 
#####
# Initialize The Revision Number
#####
 
cd ..
mv $PROJNAME $PROJNAME.orig
cvs co $PROJNAME
cd $PROJNAME
cvs commit -r1.100 -m 'Initial CVS checkin to initialize version number'
 
#####