docs(git): update audit to be consistent with subject

This commit is contained in:
nprimo 2024-04-17 12:02:18 +01:00 committed by Niccolò Primo
parent c3b6ee6a31
commit 8d781bd7f6
1 changed files with 2 additions and 2 deletions

View File

@ -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?