remote-bzr: fix for disappeared revisions
[git.git] / Documentation / git-column.txt
blob5d6f1cc464a09131cc7898b67fb165c600e2045f
1 git-column(1)
2 =============
4 NAME
5 ----
6 git-column - Display data in columns
8 SYNOPSIS
9 --------
10 [verse]
11 'git column' [--command=<name>] [--[raw-]mode=<mode>] [--width=<width>]
12              [--indent=<string>] [--nl=<string>] [--padding=<n>]
14 DESCRIPTION
15 -----------
16 This command formats its input into multiple columns.
18 OPTIONS
19 -------
20 --command=<name>::
21         Look up layout mode using configuration variable column.<name> and
22         column.ui.
24 --mode=<mode>::
25         Specify layout mode. See configuration variable column.ui for option
26         syntax.
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.
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.
36 --indent=<string>::
37         String to be printed at the beginning of each line.
39 --nl=<N>::
40         String to be printed at the end of each line,
41         including newline character.
43 --padding=<N>::
44         The number of spaces between columns. One space by default.
47 Author
48 ------
49 Written by Nguyen Thai Ngoc Duy <pclouds@gmail.com>
51 GIT
52 ---
53 Part of the linkgit:git[1] suite