- Launch Eclipse using runeclipse.
- Select File
>> New >> Project
- Create a Java project, and press Next.
- Name it (e.g. gb
or antichess), and press Next.\
- Click Add Folder, and create a folder src under your project
folder. Select this folder before you click OK from the Source
Folder Selection dialog, so that Eclipse knows that your source files
will be in this folder. When Eclipse asks "Do you want to remove
the project as source folder...", say Yes.
- Use File >> New >> Folder to create doc and lib folders under your project
folder.
- Right-click on your project folder and select Team >> Share Project.
- Choose Create a new
repository location.
- Fill in the fields as follows:
Host: athena.dialup.mit.edu
Repository path: /mit/6.170/groups/seMMN/cvsroot
(where MMN is
your group number)
User: your username
Password: leave this field blank if you are
on Athena; otherwise, enter your Athena password
Connection type: ext if you are on Athena;
otherwise choose extssh
- Click Finish.
- Commit your project
folder to finish putting it in CVS.
|
- cd
~/6.170/workspace
- mkdir
myproject
(suggested names: gb or antichess)
- cd myproject
- mkdir src lib doc
- cvs -d
/mit/6.170/groups/seMMN/cvsroot
import -m
"Start" myproject seMMN start
- cd ..
- rm -r myproject
(we're deleting the skeletal directory because you can't use it as a
CVS working directory; you have to check it out again)
- cvs -d /mit/6.170/groups/seMMN/cvsroot co myproject
|