blob: 03d18465d4f2cc8327362917d1c808e523333d11 [file] [log] [blame]
Junio C Hamano22700fb2012-05-03 23:07:251git-column(1)
2=============
3
4NAME
5----
6git-column - Display data in columns
7
8SYNOPSIS
9--------
10[verse]
11'git column' [--command=<name>] [--[raw-]mode=<mode>] [--width=<width>]
Junio C Hamano010705a2012-06-19 23:37:2612 [--indent=<string>] [--nl=<string>] [--padding=<n>]
Junio C Hamano22700fb2012-05-03 23:07:2513
14DESCRIPTION
15-----------
16This command formats its input into multiple columns.
17
18OPTIONS
19-------
20--command=<name>::
21Look up layout mode using configuration variable column.<name> and
22column.ui.
23
24--mode=<mode>::
25Specify layout mode. See configuration variable column.ui for option
26syntax.
27
28--raw-mode=<n>::
29Same as --mode but take mode encoded as a number. This is mainly used
30by other commands that have already parsed layout mode.
31
32--width=<width>::
33Specify the terminal width. By default 'git column' will detect the
34terminal width, or fall back to 80 if it is unable to do so.
35
36--indent=<string>::
37String to be printed at the beginning of each line.
38
39--nl=<N>::
40String to be printed at the end of each line,
41including newline character.
42
43--padding=<N>::
44The number of spaces between columns. One space by default.
45
Junio C Hamano22700fb2012-05-03 23:07:2546GIT
47---
48Part of the linkgit:git[1] suite