* se/tag:
  Strip useless "tags/" prefix from git-tag -l output
This commit is contained in:
Junio C Hamano 2006-05-15 23:43:27 -07:00
Родитель 3aece89fa2 e6ebb8a3fb
Коммит 94cdb38258
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -25,14 +25,12 @@ do
force=1 force=1
;; ;;
-l) -l)
cd "$GIT_DIR/refs" &&
case "$#" in case "$#" in
1) 1)
find tags -type f -print ;; set x . ;;
*)
shift
find tags -type f -print | grep "$@" ;;
esac esac
shift
git rev-parse --symbolic --tags | sort | grep "$@"
exit $? exit $?
;; ;;
-m) -m)