get_sha1: handle special case $commit^{/}
commit4322842acfaace812308f8aec0fe39a358f3c6f2
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Wed, 15 Dec 2010 09:02:54 +0000 (15 16:02 +0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 16 Dec 2010 21:11:42 +0000 (16 13:11 -0800)
tree31cb3e55eccfa2f4aa3d58985866a3870f85faf0
parent32574b68c57f3b34e58216a4c9c6d570d11ec47b
get_sha1: handle special case $commit^{/}

Empty regex pattern should always match. But the exact behavior of
regexec() may vary. Because it always matches anyway, we can just
return 'matched' without calling regex machinery.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_name.c