Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Sixt <johannes.sixt@telecom.at>2008-03-18 23:52:00 +0300
committerJunio C Hamano <gitster@pobox.com>2008-03-24 03:11:33 +0300
commitec31b0ce983e7e96b8a419dec3c34907b2f8226e (patch)
tree5033c37192cd74369eaa4814e81f456c1c824bf1 /builtin-remote.c
parent0c829391cfcdc57172765322575804a7ad5f3116 (diff)
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 9c15173032..d77f10a0ea 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 */