Connecting to our unix server:
Make a repository - You can skip this step since I made one for each group already, but if you want your own repository accessible via the bigmazzy file system then follow these steps
mkdir ~/svn
chmod -R 777 svn
(A better approach is to make it group readable only if you want a group to be set up, otherwise anyone with an account can change your project files)
mkdir ~/myproject
svn import myproject file:///home/student/yourusername/svn/myproject -m "comment on initial import"
Initial checkout of project
svn checkout http://www.math.uaa.alaska.edu/svn/project_name
project_name
is your project's assigned name (e.g. ccel, medical, chugach).
Adding Files
pico foo.cpp
, vi stuff.cpp
, etc.
svn add foo.cpp stuff.cpp
svn commit -m "comment about new files"
Editing Files
svn update
vi foo.cpp
svn commit -m "Changed blah blah"
Tortoise SVN
http://www.math.uaa.alaska.edu/svn/project_name
.