ssh cs15lwi23XYZ@ieng6.ucsd.edu <enter>
rm -rf ~/lab7 <enter>
ls below is just showing that there was an existing copy and that rm -rf removed the copy
git clone git@github.com:Hall003/lab7.git <enter>
cd lab7 <enter>
javac -cp .:lib/hamcrest-core-1.3.jar:lib/junit-4.13.2.jar *.java <enter>
java -cp .:lib/hamcrest-core-1.3.jar:lib/junit-4.13.2.jar org.junit.runner.JUnitCore ListExamplesTests <enter>
nano ListExamples.java <enter>
<right>
arrow key 12 times to move 12 spaces to right<delete>
then <2>
to replace the 1 with a 2 so that the line now reads “index2 += 1;”
javac -cp .:lib/hamcrest-core-1.3.jar:lib/junit-4.13.2.jar *.java <enter>
java -cp .:lib/hamcrest-core-1.3.jar:lib/junit-4.13.2.jar org.junit.runner.JUnitCore ListExamplesTests <enter>
First add the files to the commits, then set the commit message, and push to origin
git add ListExamples.java <enter>
git commit -m "<insert commit message>" <enter>
git push origin main <enter>