The svn repository is accessed as https://svn.cs.kent.edu/courses/cs63304/svn/USERNAME where USERNAME is your kent username. It will ask for a password which is you kent.edu password (NOT a cs.kent.edu one if you have it). Under there, a student can work on the repository with the exception of the EVAL directory, which is reserved for grader use. To begin CHECKOUT the repository into a directory ccsvn of your main directory using: farrell@gollum:~[1002]>svn co https://svn.cs.kent.edu/courses/cs63304/svn/pfarrell ccsvn --username pfarrell A ccsvn/EVAL Checked out revision 3. To submit your homework where the files are all in a subdirectory hw2 of your main directory. farrell@gollum:~[1003]>cd ccsvn farrell@gollum:~/ccsvn[1004]>cp -r ../hw2 . farrell@gollum:~/ccsvn[1005]>ls EVAL hw2 farrell@gollum:~/ccsvn[1006]>svn add hw2 A hw2 A hw2/Figure_7.17 A hw2/pi.c A hw2/mm.c A hw2/Figure_7.19 A hw2/mm4.c A hw2/mm3.c A hw2/mm5.c A hw2/Figure_7.19.1 A hw2/Figure_7.16 A hw2/sieve.cpp A hw2/mm2.c farrell@gollum:~/ccsvn[1007]>svn commit -m "CC Hw2" Adding hw2 Adding hw2/Figure_7.16 Adding hw2/Figure_7.17 Adding hw2/Figure_7.19 Adding hw2/Figure_7.19.1 Adding hw2/mm.c Adding hw2/mm2.c Adding hw2/mm3.c Adding hw2/mm4.c Adding hw2/mm5.c Adding hw2/pi.c Adding hw2/sieve.cpp Transmitting file data ........... Committed revision 4. Note that you need to copy the homework subdirectory into the ccsvn directory and then use svn add AND svn commit. You should include a message indicating which homework this is when you commit the homework. The -m "CC hw2" does this.