git commit

GIT allows you to track code changes over time by author with a set of commands to search, manipulate and revert history.

A commit it is a snapshot of the repository at a given point. It is a way to save the state of the repository. It comes with the author, time of day, a message about the changes you were done, etc.

git commit -m "A message about the changes."