1 #!/bin/bash 2 3 if [ ! -f "./basic/basic-file.txt" ]; then 4 echo "Expected basic file does not exist" 5 exit 1 6 fi 7 8 echo hello >> ./basic/basic-file.txt 9 echo hello >> ./basic/new-file.txt 10 git -C ./basic status