summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-05-23 07:17:47 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-05-23 07:17:47 (GMT)
commit2555699aa2863861e32d222ede2c3df2dbf92088 (patch)
tree77c859afca658d3a40237a04fc9fe49e0ea8864d /Documentation
parente97593693ed36da918413732c9ca4b09c3e9d213 (diff)
parenta5bbda8b7b7f25f6caaa9f940e455e702f39766e (diff)
downloadgit-2555699aa2863861e32d222ede2c3df2dbf92088.zip
git-2555699aa2863861e32d222ede2c3df2dbf92088.tar.gz
git-2555699aa2863861e32d222ede2c3df2dbf92088.tar.bz2
Merge branch 'jn/lstree'
* jn/lstree: Add an option to git-ls-tree to display also the size of blob
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-ls-tree.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/Documentation/git-ls-tree.txt b/Documentation/git-ls-tree.txt
index 7899394..ad7f1b9 100644
--- a/Documentation/git-ls-tree.txt
+++ b/Documentation/git-ls-tree.txt
@@ -9,7 +9,7 @@ git-ls-tree - List the contents of a tree object
SYNOPSIS
--------
[verse]
-'git-ls-tree' [-d] [-r] [-t] [-z]
+'git-ls-tree' [-d] [-r] [-t] [-l] [-z]
[--name-only] [--name-status] [--full-name] [--abbrev=[<n>]]
<tree-ish> [paths...]
@@ -36,6 +36,10 @@ OPTIONS
Show tree entries even when going to recurse them. Has no effect
if '-r' was not passed. '-d' implies '-t'.
+-l::
+--long::
+ Show object size of blob (file) entries.
+
-z::
\0 line termination on output.
@@ -65,6 +69,14 @@ Output Format
When the `-z` option is not used, TAB, LF, and backslash characters
in pathnames are represented as `\t`, `\n`, and `\\`, respectively.
+When the `-l` option is used, format changes to
+
+ <mode> SP <type> SP <object> SP <object size> TAB <file>
+
+Object size identified by <object> is given in bytes, and right-justified
+with minimum width of 7 characters. Object size is given only for blobs
+(file) entries; for other entries `-` character is used in place of size.
+
Author
------