Commit staged files to a repository
command line
git commit -m "initial commit đ"
Tip: Add files and commit in a single command
command line
git commit -a -m "additional commit"
# or
git commit -am "additional commit"
Use git log to see the history of commits:
git log