Git self memo: how to display branches in command line without any other software.

How to print out your git repo in a easy way through your command line, without git kraken or any other software.

This will show you all branches:

git log --all --decorate --oneline --graph

You can easly display only the master branch like this:

git log master --decorate --oneline --graph