diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-01-11 11:47:48 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-20 21:32:31 -0800 |
commit | 8860fd42fcf5a7853f7d7c2198793183320293ff (patch) | |
tree | 24b6d67b95ef9efe285a4cb1f71d77edc5ef1834 /revision.h | |
parent | bcf316187699c5e97bf47c1b8a00c844bf809fbc (diff) | |
download | git-8860fd42fcf5a7853f7d7c2198793183320293ff.tar.gz git-8860fd42fcf5a7853f7d7c2198793183320293ff.tar.xz |
Teach the revision walker to walk by reflogs with --walk-reflogs
When called with "--walk-reflogs", as long as there are reflogs
available, the walker will take this information into account, rather
than the parent information in the commit object.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/revision.h b/revision.h index 8f7907d7a..d93481f68 100644 --- a/revision.h +++ b/revision.h @@ -89,6 +89,8 @@ struct rev_info { topo_sort_set_fn_t topo_setter; topo_sort_get_fn_t topo_getter; + + struct reflog_walk_info *reflog_info; }; #define REV_TREE_SAME 0 |