Skip to content

Instantly share code, notes, and snippets.

@lfalmeida
Created June 16, 2018 21:14
Show Gist options
  • Save lfalmeida/863bc6a113059edf340b0794ac605e12 to your computer and use it in GitHub Desktop.
Save lfalmeida/863bc6a113059edf340b0794ac605e12 to your computer and use it in GitHub Desktop.
git for-each-ref --sort=taggerdate --format '%(tag)_,,,_%(taggerdate:raw)_,,,_%(taggername)_,,,_%(subject)' refs/tags \
| awk 'BEGIN { FS = "_,,,_" } ; { t=strftime("%Y-%m-%d %H:%M",$2); printf "%-20s %-18s %-25s %s\n", t, $1, $4, $3 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment