Skip to content

Commit

Permalink
Update labreport4.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathannnty authored Mar 5, 2024
1 parent ac892ec commit c3ed3a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cse15l-lab/labreport4.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ___
## Step 9. Commit and push the resulting change to your Github account (you can pick any commit message!)
* The keys that were pressed were

``` g i t `<space>` a d d `<space>` . , g i t `<space>` c o m m i t `<space>` - m `<space>` "index1 to index2" ```
``` g i t `<space>` a d d `<space>` . , g i t `<space>` p u s h, g i t `<space>` c o m m i t `<space>` - m `<space>` "index1 to index2" ```

The command `git add .` is intended to include the ALL changes that I've made in the repository into the staging area to be included in the next commit, including the changes made to `ListExamples.java` through the `vim` text editor. Afterwards, I used the command `git commit -m ""` in order to record the changes staged as a new commit in the Git history. The command line option `-m` is so that it attaches a message with the commit you've made, normally this message should indicate what were the changes made to the repository. So befittingly, my commit message was "index1 to index2" since that was the sole change I made to `ListExamples.java`.

Expand Down

0 comments on commit c3ed3a9

Please sign in to comment.