Git development
 help / color / mirror / Atom feed
* [PATCH] describe: match pattern for lightweight tags too
@ 2008-06-04 19:06 Michael Dressel
  2008-06-04 19:55 ` Shawn O. Pearce
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Dressel @ 2008-06-04 19:06 UTC (permalink / raw)
  To: git


So far git describe --match <pattern> would apply the <pattern> only
to tag objects not to lightweight tags. This change make describe apply
the <pattern> to lightweight tags too.

Signed-off-by: Michael Dressel <MichaelTiloDressel@t-online.de>
---
  builtin-describe.c |    9 +++++----
  1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/builtin-describe.c b/builtin-describe.c
index df554b3..3da99c1 100644
--- a/builtin-describe.c
+++ b/builtin-describe.c
@@ -80,12 +80,13 @@ static int get_name(const char *path, const unsigned char *sha1, int flag, void
  	 * Otherwise only annotated tags are used.
  	 */
  	if (might_be_tag) {
-		if (is_tag) {
+		if (is_tag)
  			prio = 2;
-			if (pattern && fnmatch(pattern, path + 10, 0))
-				prio = 0;
-		} else
+		else
  			prio = 1;
+
+		if (pattern && fnmatch(pattern, path + 10, 0))
+			prio = 0;
  	}
  	else
  		prio = 0;
-- 
1.5.5.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-06-04 20:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-04 19:06 [PATCH] describe: match pattern for lightweight tags too Michael Dressel
2008-06-04 19:55 ` Shawn O. Pearce
2008-06-04 20:09   ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox