News

graph@log:~$ git log --all --decorate --oneline --graph A pretty git log graph The pretty switch of the git log provides a multitude of ways to format git log output, especially when a developer uses ...
When you are using the git log you can specify an option called --first-parent that allows you to just specify the first parent of a commit allowing you to visualize a linear git log. Without first ...
To include extra data about all branches, commits and authors in the graph you can add the decorate and all switches: git log –all –decorate –oneline –graph All of the features of the pretty switch ...