diff --git a/src/tags.js b/src/tags.js index 26e8d13f..c097330e 100644 --- a/src/tags.js +++ b/src/tags.js @@ -6,7 +6,7 @@ const MATCH_V = /^v\d/ const fetchTags = async (options, remote) => { const format = `%(refname:short)${DIVIDER}%(creatordate:short)` - const tags = (await cmd(`git tag -l --sort=-creatordate --format=${format} ${options.appendGitTag}`)) + const tags = (await cmd(`git tag -l --format=${format} ${options.appendGitTag}`)) .trim() .split('\n') .map(parseTag(options))