diff options
author | Sean <seanlkml@sympatico.ca> | 2006-05-14 20:07:39 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-15 00:54:31 -0700 |
commit | e6ebb8a3fbef10f50a3f4fe346d3bb47fe8ce07b (patch) | |
tree | ba57dc9ae890d8559544407874016875fb0f368f | |
parent | a62be77f5ebdbbd46d6956dc4d07571835588389 (diff) | |
download | git-e6ebb8a3fbef10f50a3f4fe346d3bb47fe8ce07b.tar.gz git-e6ebb8a3fbef10f50a3f4fe346d3bb47fe8ce07b.tar.xz |
Strip useless "tags/" prefix from git-tag -l output
-rwxr-xr-x | git-tag.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/git-tag.sh b/git-tag.sh index dc6aa9576..a0afa2582 100755 --- a/git-tag.sh +++ b/git-tag.sh @@ -25,14 +25,12 @@ do 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) |