Skip to content
NNekwasa.R

Glossary

What Is a Git Commit?

A commit is a saved snapshot of your project. When you commit, Git records the current state of your files along with a message describing the change, like “add login page.”

Why commits matter

  • You can return to any commit — your project’s time machine.
  • History shows exactly what changed and when.
  • Clear messages make collaboration readable.

Good rule: commit often, with messages that explain the why, not just the what.

More terms

Browse all terms →