July 2018
Beginner
552 pages
13h 18m
English
Since we commit every change to the source control system, we immediately get a nice change log. In VSCode, you can enable the history view by adding the extension Git History, by Don Jayamanne:

Being PowerShell enthusiasts, we don't care for pretty pictures, so if you are not in an editor, you might want to use git log, instead:
# Get the commit historygit log# How about a nicer format?git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(white)<%an>%Creset' --abbrev-commit
# Configure an alias to make it easier to usegit config --global alias.prettylog "log --graph --pretty=format:'%Cred%h%Creset ...
Read now
Unlock full access