Skip to content

Commit

Permalink
docs(git): update audit to be consistent with subject
Browse files Browse the repository at this point in the history
  • Loading branch information
nprimo committed Apr 17, 2024
1 parent c3b6ee6 commit cb5b116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subjects/git/audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@

###### Did the student navigate to the `work` directory and create a subdirectory named `hello`?

###### Did the student generate a file named `hello.sh` with the content `puts "Hello, World"` inside the `hello` directory?
###### Did the student generate a file named `hello.sh` with the content `echo "Hello, World"` inside the `hello` directory?

###### Did the student initialize a Git repository in the `hello` directory?

###### Did the student use the `git status` command to check the status of the repository?

###### Did the student modify the `hello.sh` file content with the provided `puts "Hello, #{ARGV.first}!"`?
###### Did the student modify the `hello.sh` file content with the provided `echo "Hello, $1"`?

###### Did the student stage the modified `hello.sh` file, commit the changes to the repository, and ensure that the working tree is clean afterward?

Expand Down

0 comments on commit cb5b116

Please sign in to comment.