mirror of
https://github.com/thegeeklab/git-sv.git
synced 2024-11-21 12:00:40 +00:00
parent
fabecbf56c
commit
e4e395ee39
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user