git commit commits the staged change(s) to the repo
git commit takes the changes that you've staged and packages them up and applies them to the repo in a persistent manner.
git commit
Git will open the commit in your ${EDITOR} of choice where you can provide a commit message. Saving and exiting without error (RC=0) signals to git to do the commit. You can exit without saving (RC!=0) and git will abort the commit.
Optionally, you can specify the commit message on the command line.
git commit -m "adding meeting notes"
Optionally, you can view the contents of the commit with the --verbose (-v) option.
git help is a convenient way to get more information.
git help [command]
The [command] is optional. Without the [command] git provides a very brief summary of the most common commands. With the [command] git shows the git-[command] manual page which includes extensive options and details for each [command].