| | #!/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 |
---|
| | |
---|
| | |