Changes from v6 [1]: - Merge the first two patches into one - Make "help -a" support column.ui - Remove redundant code Ramsay pointed out in 01/10 - Reword COL_DENSE commit message, 04/10 [1] http://article.gmane.org/gmane.comp.version-control.git/191522 Nguyễn Thái Ngọc Duy (10): Add git-column for columnar display Stop starting pager recursively column: add columnar layout column: add dense layout support column: add column.ui for default column output settings help: reuse print_columns() for help -a branch: add --column status: add --column column: support piping stdout to external git-column process tag: add --column .gitignore | 1 + Documentation/config.txt | 38 ++++ Documentation/git-branch.txt | 9 + Documentation/git-column.txt | 53 +++++ Documentation/git-status.txt | 7 + Documentation/git-tag.txt | 9 + Makefile | 3 + builtin.h | 1 + builtin/branch.c | 32 +++- builtin/column.c | 62 ++++++ builtin/commit.c | 6 + builtin/help.c | 7 +- builtin/tag.c | 26 ++- column.c | 476 ++++++++++++++++++++++++++++++++++++++++++ column.h | 40 ++++ command-list.txt | 1 + git.c | 1 + help.c | 54 ++---- help.h | 2 +- pager.c | 2 +- parse-options.h | 2 + t/t3200-branch.sh | 77 +++++++ t/t7004-tag.sh | 44 ++++ t/t7508-status.sh | 24 ++ t/t9002-column.sh | 161 ++++++++++++++ wt-status.c | 28 +++- wt-status.h | 1 + 27 files changed, 1119 insertions(+), 48 deletions(-) create mode 100644 Documentation/git-column.txt create mode 100644 builtin/column.c create mode 100644 column.c create mode 100644 column.h create mode 100755 t/t9002-column.sh -- 1.7.8.36.g69ee2 -- 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