Added logic to get rid of sticky tags.
1 parent 4b9ebc1 commit 9f643aa6fc581960f3dc73c6a330af8a2f04ff1e
@tundra tundra authored on 30 May 2012
Showing 1 changed file
View
11
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.103 2012/05/30 16:14:50 tundra Exp $
# $Id: cvscreate.sh,v 1.104 2012/05/30 16:45:15 tundra Exp $
 
#####
# Constants And Literals
#####
cvs co $PROJNAME
cd $PROJNAME
cvs commit -r1.100 -m 'Initial CVS checkin to initialize version number'
 
#####
# Get Rid Of Sticky Tags
#####
 
for f in `find ./ -type file | grep -v CVS`
do
cvs update -A $f
done