October 2016
Beginner
861 pages
20h 37m
English
Let's continue where we left off in Chapter 1, Getting Started with Git. Walk into C:\Repos\MyFirstRepo and start a new Bash shell using the right-click shortcut. Now, use the git log command to see the history of our repository, as shown in this screenshot:

The git log command is very useful and powerful. With this command, we can get all the commits that we did one by one, each one with its most important details. It's now time to become more familiar with them.
Commits are the building blocks of a repository. Every repository is nothing more than an ordered sequence of commits. If you have a math background, ...