GIT: visualize branches and commits
See list of commits, first one on top:
git log
See all branches, with last commit on top of the list:
git branch -v
See your commits visualized directly in the Terminal:
# see all commits on the current branch
git log --graph
# see all commits on all branches
git log --graph --all