| Available | January 26, 2011 |
| Due | Prior to Project 1 due date |
If any part of the process described below fails, think about the error message for a while and see if you can figure out what went wrong. If you can't, email Prof. Peng from your GL account. Cut and paste the command you entered and the response you received into the body of the email.
Here are your tasks:
cd
cvs -d /afs/umbc.edu/users/y/p/ypeng/pub/cs341s11/Proj0 checkout -d MyProj0 your_username
cd MyProj0
ls - listing your contents
cvs remove junk_file1.txt -- removes the file from your repository
cd MyProj0
emacs Proj0.java
After invoking emacs, or your favorite text editor, write whatever code you
want in Proj0.java, save it, and exit the editor. Download the template
build.xml
file and edit so that your can execute:
ant run
This should cause some ant errors that you will need to fix as we discuss in class.
cvs add folders
cvs add Proj0.java
cvs add build.xml
cvs commit
Note that when you commit changes, CVS will open an editor in which you are
supposed to type a log entry that describes what you've done to the code.
When you exit the editor your commit will be finalized.
rm Proj0.java
ls
cvs update
ls