Signed-off-by: Nguyán ThÃi Ngác Duy <pclouds@xxxxxxxxx> --- Documentation/git-branch.txt | 8 ++++++++ builtin/branch.c | 22 +++++++++++++++++++--- 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/Documentation/git-branch.txt b/Documentation/git-branch.txt index 9106d38..3ec997a 100644 --- a/Documentation/git-branch.txt +++ b/Documentation/git-branch.txt @@ -9,6 +9,7 @@ SYNOPSIS -------- [verse] 'git branch' [--color[=<when>] | --no-color] [-r | -a] + [--[no-]column[=<options>[,<option>]*]] [-v [--abbrev=<length> | --no-abbrev]] [(--merged | --no-merged | --contains) [<commit>]] 'git branch' [--set-upstream | --track | --no-track] [-l] [-f] <branchname> [<start-point>] @@ -99,6 +100,13 @@ OPTIONS default to color output. Same as `--color=never`. +--column:: + Show branches in columns. This option is ignored in verbose mode. + +--no-column:: + Show branches in a single list. This option is used to override + core.columns if set. + -r:: List or delete (if used with -d) the remote-tracking branches. diff --git a/builtin/branch.c b/builtin/branch.c index 9e546e4..803fa5f 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -15,6 +15,7 @@ #include "branch.h" #include "diff.h" #include "revision.h" +#include "column.h" static const char * const builtin_branch_usage[] = { "git branch [options] [-r | -a] [--merged | --no-merged]", @@ -53,6 +54,8 @@ static enum merge_filter { } merge_filter; static unsigned char merge_filter_ref[20]; +static struct column_layout layout; + static int parse_branch_color_slot(const char *var, int ofs) { if (!strcasecmp(var+ofs, "plain")) @@ -451,7 +454,7 @@ static void print_ref_item(struct ref_item *item, int maxwidth, int verbose, strbuf_release(&stat); strbuf_release(&subject); } - printf("%s\n", out.buf); + string_list_append(&layout.items, out.buf); strbuf_release(&name); strbuf_release(&out); } @@ -660,6 +663,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix) PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NONEG, opt_parse_merge_filter, (intptr_t) "HEAD", }, + OPT_COLUMN(0, "column", &layout, "list branches in columns" ), OPT_END(), }; @@ -686,6 +690,11 @@ int cmd_branch(int argc, const char **argv, const char *prefix) } hashcpy(merge_filter_ref, head_sha1); + memset(&layout, 0, sizeof(layout)); + layout.mode = core_column; + layout.width = term_columns(); + layout.items.strdup_strings = 1; + argc = parse_options(argc, argv, prefix, options, builtin_branch_usage, 0); if (!!delete + !!rename + !!force_create > 1) @@ -693,8 +702,15 @@ int cmd_branch(int argc, const char **argv, const char *prefix) if (delete) return delete_branches(argc, argv, delete > 1, kinds); - else if (argc == 0) - return print_ref_list(kinds, detached, verbose, abbrev, with_commit); + else if (argc == 0) { + int ret; + if (verbose) + layout.mode = COL_PLAIN; + + ret = print_ref_list(kinds, detached, verbose, abbrev, with_commit); + display_columns(&layout, 2, ""); + return ret; + } else if (rename && (argc == 1)) rename_branch(head, argv[0], rename > 1); else if (rename && (argc == 2)) -- 1.7.2.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html