cse15l-lab-reports

Lab Report 4 - Command Line Tasks (Week 7)

Step 4

TASK: Log into ieng6


Keys pressed: ssh cs15lsp23at@ieng6.ucsd.edu<enter>

Step 5

Task: Clone your fork of the repository from your Github account


Keys pressed: git clone <Ctrl-V><enter>

Step 6

Task: Run the tests, demonstrating that they fail


Keys pressed: cd l<tab><enter>, bash t<tab><enter>

Step 7

Task: Edit the code file to fix the failing test

Entering Vim:

Editing in Vim:

Keys pressed: vim L<tab>.j<tab><enter>, /index1<enter>nnnnnnnnn>>>>>>i<backspace>2<escape>:wq<enter>

Step 8

Task: Run the tests, demonstrating that they now succeed


Keys pressed: bash t<tab><enter>

Step 9

Task: Commit and push the resulting change to your Github account


Keys pressed: git add L<tab>.j<tab>, git commit -m "fixed ListExamples.java", git remote add origin <Ctrl-V>, git push origin main