Your teacher probably already did some committing and in this one wrote "Initial commit", in the project in your machine there are still no commit's, to get right of a commit
git add .
git commit -m "Initial Commit"
There, your return will look the same.
Git add
The git add
adds files to the commit .
warns that they will all be
Read More
Git commit
The git commit
sends to the local version of your machine, -m
allows you to place a message in sequence.
Read More
Note: The name "Initial Commit" is a common name to use in new commits, it means "Initial Commit" there are even texts talking about this custom.
Read More