1 pwd 2 mkdir svnrepos 3 ls -l 4 rm wombat 5 svnadmin create /home/perkins/svnrepos 6 ls -al svnrepos/ 7 cat svnrepos/README.txt 8 pwd 9 cd cse303/talk 10 ls -l 11 svn import -m "initial import of talk project" . file:///home/perkins/svnrepos/talk 12 cd 13 ls -l 14 cd svnrepos/ 15 ls -la 16 cd 17 mkdir work 18 cd work 19 svn co file:///home/perkins/svnrepos/talk talk 20 ls -l 21 cd talk 22 ls -l 23 make 24 emacs & 25 make 26 ./talk 27 svn commit -m 'fixed declaration bug' 28 make 29 ./talk 30 svn commit -m "be more friendly" 31 svn update 32 make 33 ./talk 34 svn commit -m 'fixed conflict'