summaryrefslogtreecommitdiff
path: root/builtin-remote.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-06-12 06:43:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-06-12 06:43:25 (GMT)
commit8b7d4e738ee5489fecb5c4a55d14884b09e0dc6d (patch)
tree9a2e5d1551370deaacbb8e7642666186a10d7428 /builtin-remote.c
parente7d5a97d5e131925ccae48db94f2069631a8aa41 (diff)
downloadgit-8b7d4e738ee5489fecb5c4a55d14884b09e0dc6d.zip
git-8b7d4e738ee5489fecb5c4a55d14884b09e0dc6d.tar.gz
git-8b7d4e738ee5489fecb5c4a55d14884b09e0dc6d.tar.bz2
"remote prune": be quiet when there is nothing to prune
The previous commit made it always say "Pruning $remote" but reported the URL only when there is something to prune. Make it consistent by not saying anything at all when there is nothing to prune. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-remote.c')
-rw-r--r--builtin-remote.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/builtin-remote.c b/builtin-remote.c
index 4b00cf9..145dd85 100644
--- a/builtin-remote.c
+++ b/builtin-remote.c
@@ -560,12 +560,13 @@ static int prune(int argc, const char **argv)
get_remote_ref_states(*argv, &states, 1);
- printf("Pruning %s\n", *argv);
- if (states.stale.nr)
+ if (states.stale.nr) {
+ printf("Pruning %s\n", *argv);
printf("URL: %s\n",
states.remote->url_nr
? states.remote->url[0]
: "(no URL)");
+ }
for (i = 0; i < states.stale.nr; i++) {
const char *refname = states.stale.items[i].util;