1001 cd lec19play 1002 emacs & 1003 ls 1004 pwd 1005 ls original 1006 ls original/hw4 1007 ls solution 1008 ls original/solution 1009 which cvs 1010 cvs -d ~djg/danAttuCVSRepository init 1011 ls ~djg 1012 ls ~djg/danAttuCVSRepository/ 1013 ls ~djg/danAttuCVSRepository/CVSROOT 1014 ls 1015 mkdir tmp 1016 cd tmp 1017 cvs -d ~djg/danAttuCVSRepository/ import hw4 foo bar 1018 cvs -d ~djg/danAttuCVSRepository/ import -m "starting up" hw4 foo bar 1019 ls ~djg/danAttuCVSRepository/CVSROOT 1020 ls ~djg/danAttuCVSRepository/ 1021 ls 1022 cd .. 1023 rmdir tmp 1024 ls 1025 cvs -d ~djg/danAttuCVSRepository/ checkout hw4 1026 ls 1027 cd hw4 1028 ls 1029 cvs update 1030 cp ../original/*.c . 1031 cp ../original/hw4/*.c . 1032 ls 1033 cvs update 1034 cvs add gamePlayers.c 1035 cvs commit -m "adding the player code" 1036 cvs update 1037 cvs update 1038 cvs diff gamePlayers.c 1039 gcc gamePlayers.c 1040 cvs diff 1041 cvs commit -m "introduced a comment and an error" 1042 cvs diff 1043 cvs diff -r 1.1 1044 rm gamePlayers.c 1045 cvs update 1046 rm gamePlayers.c 1047 cvs update -r1.1 1048 cvs diff 1049 cvs commit -m "back to the old one" 1050 cvs log gamePlayers.c 1051 rm gamePlayers.c 1052 cvs update 1053 ls 1054 cvs add 1055 cvs add *.c 1056 rm gamePlayers.c 1057 cvs add *.c 1058 ls 1059 cd .. 1060 ls 1061 mv hw4 hw4ignoreme 1062 mkdir hw4 1063 cd hw4 1064 cd .. 1065 rmdir hw4 1066 cvs -d ~djg/danAttuCVSRepository/ hw4 1067 cvs -d ~djg/danAttuCVSRepository/ checkout hw4 1068 cd hw4 1069 ls 1070 cp ../original/hw4/gameRunner.c 1071 cp ../original/hw4/gameRunner.c . 1072 cp ../original/hw4/gameSupport.c . 1073 cp ../original/hw4/*.h . 1074 ls 1075 cvs add gameRunner.c gameSupport.c *.h 1076 cvs update 1077 cvs commit -m "got them all now" 1078 ls 1079 pwd 1080 cd .. 1081 mkdir splitPersonality 1082 cd splitPersonality/ 1083 cvs -d ~djg/danAttuCVSRepository/ checkout hw4 1084 cd hw4 1085 pwd 1086 ls 1087 cvs update 1088 cd ../../hw4 1089 cvs update 1090 cvs commit -m "gotcha sucka" 1091 cd ../splitPersonality/hw4 1092 cvs update 1093 pwd 1094 cvs update 1095 cvs commit -m "i win the race" gamePlayers.c 1096 pwd 1097 cd ../../hw4 1098 cvs commit -m "i think i win the race" gamePlayers.c 1099 cvs -n update 1100 cvs update 1101 history > h_reals