unixorn/git-extra-commands

View on GitHub
bin/git-history-graph

Summary

Maintainability
Test Coverage
#!/usr/bin/env bash
#
# Graph git commit history
#
# From https://stackoverflow.com/a/1838938

exec git log --graph \
  --full-history \
  --all \
  --color \
  --pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s"