#!/usr/bin/env bash
## Show the root commits.
## Source: git-extra-commands

# Show all the parentless commits

exec git log --all --oneline --decorate --max-parents=0
