Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2006-02-27 19:54:36 +0300
committerJunio C Hamano <junkio@cox.net>2006-02-27 22:10:16 +0300
commitd9a83684c473e04c61f0060c4926d20f8183f7b6 (patch)
tree09cfb3bda4137a5376477fc6659e933fa4657cf4 /revision.h
parentd9cfb964c7a59a39711da12e56563e10aa388331 (diff)
Splitting rev-list into revisions lib, end of beginning.
This makes the rewrite easier to validate in that revision flag parsing and warlking part are now all in rev_info structure. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'revision.h')
-rw-r--r--revision.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/revision.h b/revision.h
index 5170ac425f..a22f198515 100644
--- a/revision.h
+++ b/revision.h
@@ -21,7 +21,9 @@ struct rev_info {
tag_objects:1,
tree_objects:1,
blob_objects:1,
- edge_hint:1;
+ edge_hint:1,
+ limited:1,
+ unpacked:1;
/* special limits */
int max_count;