0
0
mirror of https://github.com/thegeeklab/git-sv.git synced 2024-06-03 03:49:39 +02:00

feat: support lightweight tags

issue: #16
This commit is contained in:
Beatriz Vieira 2021-04-10 17:01:58 -03:00
parent fabecbf56c
commit e4e395ee39

View File

@ -80,7 +80,7 @@ func NewGit(messageProcessor MessageProcessor, cfg TagConfig) *GitImpl {
// Describe runs git describe, it no tag found, return empty
func (GitImpl) Describe() string {
cmd := exec.Command("git", "describe", "--abbrev=0")
cmd := exec.Command("git", "describe", "--abbrev=0", "--tags")
out, err := cmd.CombinedOutput()
if err != nil {
return ""
@ -138,7 +138,7 @@ func (g GitImpl) Tag(version semver.Version) error {
// Tags list repository tags
func (g GitImpl) Tags() ([]GitTag, error) {
cmd := exec.Command("git", "tag", "-l", "--format", "%(taggerdate:iso8601)#%(refname:short)")
cmd := exec.Command("git", "for-each-ref", "--sort", "creatordate", "--format", "%(creatordate:iso8601)#%(refname:short)", "refs/tags")
out, err := cmd.CombinedOutput()
if err != nil {
return nil, combinedOutputErr(err, out)