call git remote prune to drop stale tracking branches

master
Joey Hess 2009-12-07 14:38:10 -05:00
parent 4fe1eb7ab5
commit 0294fdfb5c
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,9 @@ while (<IN>) {
print "$remote failed\n";
}
$error |= $r;
# drop stale tracking branches
system("git", "remote", "prune", $remote);
}
}
close IN;