fix: fix ambiguous refname

This commit is contained in:
Ryooooooga 2022-05-12 19:16:58 +09:00
parent 5529088e43
commit 61970a4439
No known key found for this signature in database
GPG key ID: 07CF200DFCC20C25
10 changed files with 25 additions and 4 deletions

View file

@ -29,6 +29,10 @@ func (c *Commit) ShortSha() string {
return utils.ShortSha(c.Sha)
}
func (c *Commit) FullRefName() string {
return c.Sha
}
func (c *Commit) RefName() string {
return c.Sha
}