Committing Changes to a Repository
Learn how to commit changes to a repository.
The git commit
command
The git commit
command tells Git to take a snapshot of all added content at
this point.
1 git commit -m "Some message"
2 git log
Now that git is aware of the mycode.py
file, ...