#!/bin/sh
# git show-merge -- list commits part of a specified merge

range="$1^..$1"

if [ -t 1 ]; then
	tig "$range"
else
	git log --graph "$range"
fi
