From 08072c0630a440a66aa6f402e9ef5b08f575fc5a Mon Sep 17 00:00:00 2001 From: Mark Watts Date: Tue, 18 Apr 2017 21:59:52 -0500 Subject: [PATCH] Made git tag identification more conservative --- codespeed/commits/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codespeed/commits/git.py b/codespeed/commits/git.py index 27d928f9..692ede5f 100644 --- a/codespeed/commits/git.py +++ b/codespeed/commits/git.py @@ -68,7 +68,7 @@ def getlogs(endrev, startrev): tag = "" - cmd = ["git", "describe", "--tags", commit_id] + cmd = ["git", "tag", "--points-at", commit_id] proc = Popen(cmd, stdout=PIPE, stderr=PIPE, cwd=working_copy) try: