From f2fac06b2b3fc17f58202c5344691657e09acc53 Mon Sep 17 00:00:00 2001 From: Richard Mahn Date: Mon, 26 Aug 2019 18:05:30 -0400 Subject: [PATCH] Fixes #7945 - makes sure we are only getting tag refs --- modules/git/repo_tag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git/repo_tag.go b/modules/git/repo_tag.go index 20c36bd708381..91a7a0cd50762 100644 --- a/modules/git/repo_tag.go +++ b/modules/git/repo_tag.go @@ -153,7 +153,7 @@ func (repo *Repository) GetTagNameBySHA(sha string) (string, error) { // GetTagID returns the object ID for a tag (annotated tags have both an object SHA AND a commit SHA) func (repo *Repository) GetTagID(name string) (string, error) { - stdout, err := NewCommand("show-ref", "--", name).RunInDir(repo.Path) + stdout, err := NewCommand("show-ref", "--tags", "--", name).RunInDir(repo.Path) if err != nil { return "", err }