Documentation / git-ls-tree.txton commit [PATCH] read_tree_recursive(): Fix leaks (1c9da46)
   1git-ls-tree(1)
   2==============
   3v0.1, May 2005
   4
   5NAME
   6----
   7git-ls-tree - Displays a tree object in human readable form
   8
   9
  10SYNOPSIS
  11--------
  12'git-ls-tree' [-r] [-z] <tree-ish>
  13
  14DESCRIPTION
  15-----------
  16Converts the tree object to a human readable (and script processable)
  17form.
  18
  19OPTIONS
  20-------
  21<tree-ish>::
  22        Id of a tree.
  23
  24-r::
  25        recurse into sub-trees
  26
  27-z::
  28        \0 line termination on output
  29
  30Output Format
  31-------------
  32        <mode>\t        <type>\t        <object>\t      <file>
  33
  34
  35Author
  36------
  37Written by Linus Torvalds <torvalds@osdl.org>
  38
  39Documentation
  40--------------
  41Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  42
  43GIT
  44---
  45Part of the link:git.html[git] suite
  46