diff options
author | Pavel Roskin <proski@gnu.org> | 2005-11-10 06:30:12 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-11 10:13:05 +0100 |
commit | 601c978c1bc9f6742c18932cb9d4a6910934f785 (patch) | |
tree | b51b751d57e55f71faa44e10bd3aef8fb51334cf /Documentation/git-diff-tree.txt | |
parent | octopus: do not do AND'ed merge base. (diff) | |
download | git-601c978c1bc9f6742c18932cb9d4a6910934f785.tar.xz git-601c978c1bc9f6742c18932cb9d4a6910934f785.zip |
Add --no-commit-id option for git-diff-tree, use it in gitk
This patch introduces -no-commit-id option for git-diff-tree, which
suppresses commit ID output.
[jc: dropped gitk part for now.]
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-diff-tree.txt')
-rw-r--r-- | Documentation/git-diff-tree.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-diff-tree.txt b/Documentation/git-diff-tree.txt index f57c8d0d81..9a2947e27d 100644 --- a/Documentation/git-diff-tree.txt +++ b/Documentation/git-diff-tree.txt @@ -8,7 +8,7 @@ git-diff-tree - Compares the content and mode of blobs found via two tree object SYNOPSIS -------- -'git-diff-tree' [--stdin] [-m] [-s] [-v] [--pretty] [-t] [-r] [--root] [<common diff options>] <tree-ish> [<tree-ish>] [<path>...] +'git-diff-tree' [--stdin] [-m] [-s] [-v] [--no-commit-id] [--pretty] [-t] [-r] [--root] [<common diff options>] <tree-ish> [<tree-ish>] [<path>...] DESCRIPTION ----------- @@ -74,6 +74,10 @@ separated with a single space are given. commit message. Without "=<style>", it defaults to medium. +--no-commit-id:: + git-diff-tree outputs a line with the commit ID when + applicable. This flag suppressed the commit ID output. + Limiting Output --------------- |