Git Logs
Let’s take a deeper look at the commit structure and see how we can view our commit history using the Git log command.
We'll cover the following...
The git log
command
Git tracks changes to a project by maintaining a chain of snapshots or commits. If you are working on a collaborative project, you will find that your repository will have commits from different contributors. The git log
...