diff options
author | Johannes Sixt <j6t@kdbg.org> | 2008-10-22 09:39:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-22 18:05:38 -0700 |
commit | 20244ea2d09a3f5c3c83133014ca1e1b7b3d0227 (patch) | |
tree | 58d3ac35a6449f02769956d407542c73579495cc /Documentation/user-manual.txt | |
parent | f55527f80223178d1837bae08addc57bed76d236 (diff) | |
download | git-20244ea2d09a3f5c3c83133014ca1e1b7b3d0227.tar.gz |
git-remote: list branches in vertical lists
Previously, branches were listed on a single line in each section. But
if there are many branches, then horizontal, line-wrapped lists are very
inconvenient to scan for a human. This makes the lists vertical, i.e one
branch per line is printed.
Since "git remote" is porcelain, we can easily make this
backwards-incompatible change.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/user-manual.txt')
-rw-r--r-- | Documentation/user-manual.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 08d1310bf5..645d752c5c 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -4356,7 +4356,9 @@ $ git remote show example # get details * remote example URL: git://example.com/project.git Tracked remote branches - master next ... + master + next + ... $ git fetch example # update branches from example $ git branch -r # list all remote branches ----------------------------------------------- |