diff options
| author | Junio C Hamano <junkio@cox.net> | 2006-05-15 23:43:27 -0700 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2006-05-15 23:43:27 -0700 |
| commit | 94cdb382583e7c87d949fb22754d795a1b956377 (patch) | |
| tree | d5417c40c290380774135ed8a14f32c4dd680d14 | |
| parent | Merge branch 'se/rev-parse' (diff) | |
| parent | Strip useless "tags/" prefix from git-tag -l output (diff) | |
| download | git-94cdb382583e7c87d949fb22754d795a1b956377.tar.gz git-94cdb382583e7c87d949fb22754d795a1b956377.zip | |
Merge branch 'se/tag'
* se/tag:
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 dc6aa95767..a0afa25821 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) |
