Documentation / config / column.txton commit Merge branch 'ba/clone-remote-submodules' (9476094)
   1column.ui::
   2        Specify whether supported commands should output in columns.
   3        This variable consists of a list of tokens separated by spaces
   4        or commas:
   5+
   6These options control when the feature should be enabled
   7(defaults to 'never'):
   8+
   9--
  10`always`;;
  11        always show in columns
  12`never`;;
  13        never show in columns
  14`auto`;;
  15        show in columns if the output is to the terminal
  16--
  17+
  18These options control layout (defaults to 'column').  Setting any
  19of these implies 'always' if none of 'always', 'never', or 'auto' are
  20specified.
  21+
  22--
  23`column`;;
  24        fill columns before rows
  25`row`;;
  26        fill rows before columns
  27`plain`;;
  28        show in one column
  29--
  30+
  31Finally, these options can be combined with a layout option (defaults
  32to 'nodense'):
  33+
  34--
  35`dense`;;
  36        make unequal size columns to utilize more space
  37`nodense`;;
  38        make equal size columns
  39--
  40
  41column.branch::
  42        Specify whether to output branch listing in `git branch` in columns.
  43        See `column.ui` for details.
  44
  45column.clean::
  46        Specify the layout when list items in `git clean -i`, which always
  47        shows files and directories in columns. See `column.ui` for details.
  48
  49column.status::
  50        Specify whether to output untracked files in `git status` in columns.
  51        See `column.ui` for details.
  52
  53column.tag::
  54        Specify whether to output tag listing in `git tag` in columns.
  55        See `column.ui` for details.