NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
order of "git tag" (Score:1)
Re: (Score:1)
that's a strange requirement, but you can use something like this:
git-for-each-ref refs/tags/* --format="%(tag)" --sort="taggerdate"Well, that only works for annotated tags... use '%(refname)' instead of '%(tag)' and add '--sort=committerdate' for a version that works with lightweight tags too. It just looks slightly uglier :-)
Re: Revert a repo to a few hours earlier (Score:1)
You should look at git bisect :)
life is short
tab completion of that alias (Score:1)
Did you notice that the bash/zsh tab-completion will also tab complete that alias command you defined?
Also, be warned that when you clone, it doesn't clone absolutely everything unless you use --mirror - by default it will just clone "heads" and "tags"