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}}`