The git commit command saves changes to the repository.
git commit -m "Your commit message"-
Creates a new
commitwith the changes in the staging area. -
Requires a commit
messageto describe thechanges.
git commit -m "Add initial project structure"