6
Probably your teacher already gave some commit and this one wrote "Initial commit", in the project on your machine there are still no commit’s, to hit from a commit
git add .
git commit -m "Initial Commit"
Ready, your return will be equal.
Git add
The git add
adds files to the commit, the .
warns that they will all be.
Git commit
The git commit
sends to the local version of your machine, -m
allows you to place a message in the sequence.
Note: The name "Initial Commit" is a common name to use in new commits, meaning "Initial Commit" there are even texts talking about this custom.
Initial commit is just the first commit that was performed in the project, no?
– Felipe Avelar