The svn repository is accessed as https://svn.cs.kent.edu/courses/cs43203/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 spsvn of your main directory using: pfarrell@wasp:~[1002]>svn co https://svn.cs.kent.edu/courses/cs43203/svn/pfarrell spsvn --username pfarrell A spsvn/EVAL Checked out revision 3. To submit your homework where the files are all in a subdirectory hw1 of your main directory. pfarrell@wasp:~[1003]>cd spsvn pfarrell@wasp:~/spsvn[1004]>cp -r ../hw1 . pfarrell@wasp:~/spsvn[1005]>ls EVAL hw1 pfarrell@wasp:~/spsvn[1006]>svn add hw1 A hw1 A hw1/cp1.c A hw1/who4.c A hw1/Makefile A hw1/README pfarrell@wasp:~/spsvn[1007]>svn commit -m "CC HW1" Adding hw1 Adding hw1/cp1.c Adding hw1/who4.c Adding hw1/Makefile Adding hw1/README Transmitting file data ........... Committed revision 4. Note that you need to copy the homework subdirectory into the spsvn 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.