On Tue, Nov 24, 2009 at 10:56:09AM -0500, Peter van der Does wrote:
I'm using git 1.6.5.3 on Ubuntu and was wondering if there is a way to
list tags in order of when they were added to the tree, instead of
alphabetical?
You can use for-each-ref with its sort option:
git for-each-ref --sort=taggerdate --format='%(refname:short)' refs/tags
Though note that unannotated tags will have no taggerdate, and will all
sort to the front of the list. To exclude them, I think you'd have to
use a special format to grep and sort yourself. Something like:
git for-each-ref \
--format='%(taggerdate:iso8601) %(refname:short)' refs/tags |
grep -v '^ ' |
sort |
cut -d' ' -f4-
-Peff
On Tue, 24 Nov 2009 14:00:23 -0500
Jeff King [off-list ref] wrote:
On Tue, Nov 24, 2009 at 10:56:09AM -0500, Peter van der Does wrote:
quoted
I'm using git 1.6.5.3 on Ubuntu and was wondering if there is a way
to list tags in order of when they were added to the tree, instead
of alphabetical?
You can use for-each-ref with its sort option:
git for-each-ref --sort=taggerdate --format='%(refname:short)'
refs/tags
Though note that unannotated tags will have no taggerdate, and will
all sort to the front of the list. To exclude them, I think you'd
have to use a special format to grep and sort yourself. Something
like:
git for-each-ref \
--format='%(taggerdate:iso8601) %(refname:short)' refs/tags |
grep -v '^ ' |
sort |
cut -d' ' -f4-
-Peff
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks for the info, just what I was looking for.
--
Peter van der Does
GPG key: E77E8E98
Twitter: @petervanderdoes
git Ubuntu Packages:
http://blog.avirtualhome.com/git-packages-for-ubuntu/