summaryrefslogtreecommitdiff
path: root/builtin-remote.c
diff options
context:
space:
mode:
authorJohannes Sixt <johannes.sixt@telecom.at>2008-03-18 20:52:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-03-24 00:11:33 (GMT)
commitec31b0ce983e7e96b8a419dec3c34907b2f8226e (patch)
tree5033c37192cd74369eaa4814e81f456c1c824bf1 /builtin-remote.c
parent0c829391cfcdc57172765322575804a7ad5f3116 (diff)
downloadgit-ec31b0ce983e7e96b8a419dec3c34907b2f8226e.zip
git-ec31b0ce983e7e96b8a419dec3c34907b2f8226e.tar.gz
git-ec31b0ce983e7e96b8a419dec3c34907b2f8226e.tar.bz2
builtin-remote: Fix missing newline at end of listing of pushed branches
Without this the output of 'git remote show' does not end with a new-line: bash> git remote show repo * remote repo URL: repo.or.cz:/srv/git/kdbg.git Tracked remote branches maint master mob Local branch pushed with 'git push' +master:masterbash> Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at> Acked-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-remote.c')
-rw-r--r--builtin-remote.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin-remote.c b/builtin-remote.c
index 9c15173..d77f10a 100644
--- a/builtin-remote.c
+++ b/builtin-remote.c
@@ -472,6 +472,7 @@ static int show_or_prune(int argc, const char **argv, int prune)
spec->dst ? ":" : "",
skip_prefix(spec->dst, "refs/heads/"));
}
+ printf("\n");
}
cleanup_states:
/* NEEDSWORK: free remote */