git commit is the command used to permanently save the changes in the Staging Area to your local repository. Every commit comes with a unique ID and the message you wrote for it.
bash
# Commit staged changes with a message
git commit -m "Add initial project files"You should see
(The changes in the staging area are saved into the repository as a new "save point")