Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Use git-update-ref to delete a tag instead of rm()ing the ref file.
author
Christian Couder
<chriscool@tuxfamily.org>
Sun, 1 Oct 2006 20:16:22 +0000
(22:16 +0200)
committer
Junio C Hamano
<junkio@cox.net>
Sun, 1 Oct 2006 22:17:43 +0000
(15:17 -0700)
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-tag.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
26a063a
)
diff --git
a/git-tag.sh
b/git-tag.sh
index 2bde3c05fc1def12c68954bbc79e0879555bfe92..6463b314c6fe19c997c2a38d8dfdc1e9bb6637cb 100755
(executable)
--- a/
git-tag.sh
+++ b/
git-tag.sh
@@
-47,8
+47,10
@@
do
-d)
shift
tag_name="$1"
- rm "$GIT_DIR/refs/tags/$tag_name" && \
- echo "Deleted tag $tag_name."
+ tag=$(git-show-ref --verify --hash -- "refs/tags/$tag_name") ||
+ die "Seriously, what tag are you talking about?"
+ git-update-ref -m 'tag: delete' -d "refs/tags/$tag_name" "$tag" &&
+ echo "Deleted tag $tag_name."
exit $?
;;
-*)