Skip to content

Commit c18b2ea

Browse files
authored
Merge pull request tobami#219 from mwatts15/git-tag-correction
Made git tag identification more conservative
2 parents 6a385b2 + 08072c0 commit c18b2ea

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)