summaryrefslogtreecommitdiff
path: root/bin/git-push-all
diff options
context:
space:
mode:
Diffstat (limited to 'bin/git-push-all')
-rwxr-xr-xbin/git-push-all8
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/git-push-all b/bin/git-push-all
index e0a35e7e..eb71b4c9 100755
--- a/bin/git-push-all
+++ b/bin/git-push-all
@@ -101,9 +101,11 @@ my @remotes = $git->remote;
my @pushed_tags;
foreach my $remote ( @remotes ) {
- my @this_remote_tags = apply { s|\^\{\}$||; s|[a-f0-9]+\trefs/tags/|| }
- $git->ls_remote( { tags => 1 }, $remote );
- push @pushed_tags, @this_remote_tags;
+ unless ( $remote eq "dgit" ) {
+ my @this_remote_tags = apply { s|\^\{\}$||; s|[a-f0-9]+\trefs/tags/|| }
+ $git->ls_remote( { tags => 1 }, $remote );
+ push @pushed_tags, @this_remote_tags;
+ }
}
@pushed_tags = uniq @pushed_tags;