commit | e6ebb8a3fbef10f50a3f4fe346d3bb47fe8ce07b | [log] [tgz] |
---|---|---|
author | Sean <seanlkml@sympatico.ca> | Sun May 14 20:07:39 2006 -0400 |
committer | Junio C Hamano <junkio@cox.net> | Mon May 15 00:54:31 2006 -0700 |
tree | ba57dc9ae890d8559544407874016875fb0f368f | |
parent | a62be77f5ebdbbd46d6956dc4d07571835588389 [diff] [blame] |
Strip useless "tags/" prefix from git-tag -l output
diff --git a/git-tag.sh b/git-tag.sh index dc6aa95..a0afa25 100755 --- a/git-tag.sh +++ b/git-tag.sh
@@ -25,14 +25,12 @@ force=1 ;; -l) - cd "$GIT_DIR/refs" && case "$#" in 1) - find tags -type f -print ;; - *) - shift - find tags -type f -print | grep "$@" ;; + set x . ;; esac + shift + git rev-parse --symbolic --tags | sort | grep "$@" exit $? ;; -m)