#!/bin/sh git log --no-color --pretty=oneline $@ \ | while read -r a b ; do printf "%-25s %s\n" $(git describe $a) "$b" done