#!/bin/sh
git --git-dir "$1" \
	log --pretty=tformat:'%H:%P' --all  \
	| sed -ne 's/:$//p' \
	| add-postfix " $1" \
	| sort -u

exit 0
