chiark / gitweb /
dgit: Do not verify the tag with git tag -v as well as git verify-tag, ie suppress...
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 4 Jul 2015 23:06:29 +0000 (00:06 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 4 Jul 2015 23:06:29 +0000 (00:06 +0100)
debian/changelog
dgit

index 9e8f572946ace82064a3249205c11dada4a009ca..852e07985022ca1a61561374ae2115fb1b5e78f5 100644 (file)
@@ -98,6 +98,8 @@ dgit (0.23~) unstable; urgency=low
   * dgit: Be more careful about tag updates during fetch: only update
     tags referring to uploads to distro we are trying to fetch from.
   * dgit: Set up a merge driver for debian/changelog.  Closes:#769291.
+  * dgit: Do not verify the tag with git tag -v as well as git verify-tag,
+    ie suppress some noise output.
 
  --
 
diff --git a/dgit b/dgit
index 366c4566fc52f295957919a1e1039e97650f8dab..066f2a6c63fd0ef7ffb29ee968c083bdca8b86dd 100755 (executable)
--- a/dgit
+++ b/dgit
@@ -1823,7 +1823,6 @@ sub dopush ($) {
     my $tag_obj_hash = cmdoutput @git, qw(hash-object -w -t tag), $tagobjfn;
     runcmd_ordryrun @git, qw(verify-tag), $tag_obj_hash;
     runcmd_ordryrun_local @git, qw(update-ref), "refs/tags/$tag", $tag_obj_hash;
-    runcmd_ordryrun @git, qw(tag -v --), $tag;
 
     if (!check_for_git()) {
        create_remote_git_repo();