I have a git repository which contains 2 applications and git tag produces this:
helm-chart/0.1.0
helm-chart/0.1.1
syntax/v0.1.0
v1.0.0
and git describe --tags outputs this: helm-chart/0.1.1-28-gdeef00fd5 which is not indented.
However, if go-winres would implement a git-tag filter, like git describe --tags --match 'v*', the correct tag would be returned: v1.0.0-40-gdeef00fd5
I have a git repository which contains 2 applications and
git tagproduces this:and
git describe --tagsoutputs this:helm-chart/0.1.1-28-gdeef00fd5which is not indented.However, if go-winres would implement a git-tag filter, like
git describe --tags --match 'v*', the correct tag would be returned:v1.0.0-40-gdeef00fd5