Skip to content

Commit 08072c0

Browse files
committed
Made git tag identification more conservative
1 parent 6a385b2 commit 08072c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codespeed/commits/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def getlogs(endrev, startrev):
6868

6969
tag = ""
7070

71-
cmd = ["git", "describe", "--tags", commit_id]
71+
cmd = ["git", "tag", "--points-at", commit_id]
7272
proc = Popen(cmd, stdout=PIPE, stderr=PIPE, cwd=working_copy)
7373

7474
try:

0 commit comments

Comments
 (0)