#TIL that in #Git you can do `--simplify-by-decoration` when using `git log` with `--graph`, so:
git log --graph --oneline --simplify-by-decoration
This will show only those commits as a graph that have a decoration on them (e.g. a branch, tag etc.), so you get a really nice condensed view of your repo without all the "intermediate" commits.
Really handy, if you want to see at a glance which branch is ahead of others, for example.
@janriemer nice one 👍
@teleclimber Thank you! I'm glad you find it useful.🙂
@janriemer holy sh*t i needed that