From b57f62cb20d963f412cd814483947e770c8d2a6f Mon Sep 17 00:00:00 2001 From: bl-ue <54780737+bl-ue@users.noreply.github.com> Date: Fri, 8 Jan 2021 02:33:46 -0500 Subject: [PATCH] git-column: add page (#5108) --- pages/common/git-column.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/git-column.md diff --git a/pages/common/git-column.md b/pages/common/git-column.md new file mode 100644 index 0000000000..8c2aedccdd --- /dev/null +++ b/pages/common/git-column.md @@ -0,0 +1,16 @@ +# git column + +> Display data in columns. +> More information: . + +- Format the standard input as multiple columns: + +`ls | git column --mode={{column}}` + +- Format the standard input as multiple columns with a maximum width of `100`: + +`ls | git column --mode=column --width={{100}}` + +- Format the standard input as multiple columns with a maximum padding of `30`: + +`ls | git column --mode=column --padding={{30}}`