Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git-svn: don't escape tilde ('~') for http(s) URLs
[gitweb.git]
/
builtin-tag.c
diff --git
a/builtin-tag.c
b/builtin-tag.c
index efd77231ffb6f2574d130a612a1c38dfe646fdf8..84db156e63681de6322019b9b9ffa15371c443b1 100644
(file)
--- a/
builtin-tag.c
+++ b/
builtin-tag.c
@@
-125,7
+125,7
@@
static int for_each_tag_name(const char **argv, each_tag_name_fn fn)
static int delete_tag(const char *name, const char *ref,
const unsigned char *sha1)
{
- if (delete_ref(ref, sha1))
+ if (delete_ref(ref, sha1
, 0
))
return 1;
printf("Deleted tag '%s'\n", name);
return 0;