CVS (cont)
To load the initial copy of a project into the repository:
cd /home/jas/src/game
cvs import -m 'The Game Project' game jas Rel-1
|
Copies entire contents under /home/jas/src/game to repository.
-m |
| a message to explain the import |
game |
| name of project within repository |
jas |
| "vendor" tag |
Rel-1 |
| release tag |
|