Junio C Hamano <junkio@xxxxxxxxx> writes: > Since commit cdaee5db165ba8bae8d3b524950e61666fc36a84 (gitk: > Improve handling of -- and ambiguous arguments), running gitk > from a subdirectory limits the displayed history with the ... FYI, I picked up your wish in the kernel list and have been experimenting with this 5-liner whenever I refer to a commit in the past: #!/bin/sh for commit do git show -s --pretty=oneline "$commit" done | sed -e 's/^[^ ]* /&(/' -e 's/$/)/' - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html