From 5f7ede1bd3ab50436c6335d93a294afdee602931 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Sat, 10 Jun 2017 09:34:21 -0600 Subject: [PATCH] Add git-taglist --- bin/git-taglist | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bin/git-taglist diff --git a/bin/git-taglist b/bin/git-taglist new file mode 100755 index 000000000..d887ddb56 --- /dev/null +++ b/bin/git-taglist @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# +# List tags in a more useful way +# +# Copyright 2017, Joe Block + +set -o pipefail + +git tag -l --sort=v:refname | tail -n8