mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-15 13:53:25 +02:00
16 lines
329 B
Markdown
16 lines
329 B
Markdown
|
# Git
|
||
|
|
||
|
> Since v1.14.0.
|
||
|
|
||
|
This allows you to change the behavior of some Git commands.
|
||
|
|
||
|
```yaml
|
||
|
# .goreleaser.yaml
|
||
|
git:
|
||
|
# What should be used to sort tags when gathering the current and previous
|
||
|
# tags if there are more than one tag in the same commit.
|
||
|
#
|
||
|
# Default: `-version:refname`
|
||
|
tag_sort: -version:creatordate
|
||
|
```
|