From c192899ebc9cafbc46b46446018101c6c06e212f Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 27 Mar 2007 15:26:35 -0700 Subject: [PATCH] Meta/topic: allow more than two letters of topic hierarchy name --- git-topic.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-topic.perl b/git-topic.perl index 4a89e24acd..40e16d3475 100755 --- a/git-topic.perl +++ b/git-topic.perl @@ -6,7 +6,7 @@ use strict; use Getopt::Long; -my $topic_pattern = '??/*'; +my $topic_pattern = '??*/*'; my $base = 'next'; my @stage = qw(next pu); my @mark = ('.', '?', '-', '+');