aboutsummaryrefslogtreecommitdiff
path: root/revision.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2008-11-03 11:25:46 -0800
committerJunio C Hamano <gitster@pobox.com>2008-11-04 00:45:34 -0800
commit78892e32616f00bf173496ca0502aff2e523db31 (patch)
tree961f0e5490acec4bafb696856ddad4efe85a0421 /revision.h
parentd467a525da28b28a0d8e16a42e121ab638fa7347 (diff)
downloadgit-78892e32616f00bf173496ca0502aff2e523db31.tar.gz
git-78892e32616f00bf173496ca0502aff2e523db31.tar.xz
revision traversal: '--simplify-by-decoration'
With this, you can simplify history not by the contents of the tree, but whether a commit has been named (ie it's referred to by some branch or tag) or not. This makes it possible to see the relationship between different named commits, without actually seeing any of the details. When used with pathspec, you would get the usual view that is limited to the commits that change the contents of the tree plus commits that are named. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.h')
-rw-r--r--revision.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.h b/revision.h
index 0a1806a9e..7cf848771 100644
--- a/revision.h
+++ b/revision.h
@@ -43,6 +43,7 @@ struct rev_info {
lifo:1,
topo_order:1,
simplify_merges:1,
+ simplify_by_decoration:1,
tag_objects:1,
tree_objects:1,
blob_objects:1,