blob: 03d18465d4f2cc8327362917d1c808e523333d11 [file] [log] [blame]
Nguyễn Thái Ngọc Duy7e29b822012-04-21 11:44:32 +07001git-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>]
Miklos Vajnab4ab1982012-06-19 19:56:09 +020012 [--indent=<string>] [--nl=<string>] [--padding=<n>]
Nguyễn Thái Ngọc Duy7e29b822012-04-21 11:44:32 +070013
14DESCRIPTION
15-----------
16This command formats its input into multiple columns.
17
18OPTIONS
19-------
20--command=<name>::
21 Look up layout mode using configuration variable column.<name> and
22 column.ui.
23
24--mode=<mode>::
25 Specify layout mode. See configuration variable column.ui for option
26 syntax.
27
28--raw-mode=<n>::
29 Same as --mode but take mode encoded as a number. This is mainly used
30 by other commands that have already parsed layout mode.
31
32--width=<width>::
33 Specify the terminal width. By default 'git column' will detect the
34 terminal width, or fall back to 80 if it is unable to do so.
35
36--indent=<string>::
37 String to be printed at the beginning of each line.
38
39--nl=<N>::
40 String to be printed at the end of each line,
41 including newline character.
42
43--padding=<N>::
44 The number of spaces between columns. One space by default.
45
Nguyễn Thái Ngọc Duy7e29b822012-04-21 11:44:32 +070046GIT
47---
48Part of the linkgit:git[1] suite