diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-03-07 05:52:02 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-17 14:10:24 -0800 |
commit | cb85bfe5dfd7504dfee43ae49a76edb92e8d8eb0 (patch) | |
tree | f9ac854e77b2fd03abdf445fe790caf2051d357d /Documentation/git-ls-tree.txt | |
parent | blame: Fix git-blame <directory> (diff) | |
download | tgif-cb85bfe5dfd7504dfee43ae49a76edb92e8d8eb0.tar.xz |
ls-tree: add --abbrev[=<n>] option
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-ls-tree.txt')
-rw-r--r-- | Documentation/git-ls-tree.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Documentation/git-ls-tree.txt b/Documentation/git-ls-tree.txt index 5bf6d8b613..018c401953 100644 --- a/Documentation/git-ls-tree.txt +++ b/Documentation/git-ls-tree.txt @@ -8,7 +8,9 @@ git-ls-tree - Lists the contents of a tree object SYNOPSIS -------- -'git-ls-tree' [-d] [-r] [-t] [-z] [--name-only] [--name-status] <tree-ish> [paths...] +'git-ls-tree' [-d] [-r] [-t] [-z] + [--name-only] [--name-status] [--full-name] [--abbrev=[<n>]] + <tree-ish> [paths...] DESCRIPTION ----------- @@ -40,6 +42,11 @@ OPTIONS --name-status:: List only filenames (instead of the "long" output), one per line. +--abbrev[=<n>]:: + Instead of showing the full 40-byte hexadecimal object + lines, show only handful hexdigits prefix. + Non default number of digits can be specified with --abbrev=<n>. + paths:: When paths are given, show them (note that this isn't really raw pathnames, but rather a list of patterns to match). Otherwise |