mirror of
https://github.com/git/git.git
synced 2026-01-09 17:46:37 +00:00
path-walk: add new 'edge_aggressive' option
In preparation for allowing both the --shallow and --path-walk options in the 'git pack-objects' builtin, create a new 'edge_aggressive' option in the path-walk API. This option will help walk the boundary more thoroughly and help avoid sending extra objects during fetches and pushes. The only use of the 'edge_hint_aggressive' option in the revision API is within mark_edges_uninteresting(), which is usually called before between prepare_revision_walk() and before visiting commits with get_revision(). In prepare_revision_walk(), the UNINTERESTING commits are walked until a boundary is found. Signed-off-by: Derrick Stolee <stolee@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
e5394794a5
commit
4705889c3d
@@ -50,6 +50,13 @@ struct path_walk_info {
|
||||
*/
|
||||
int prune_all_uninteresting;
|
||||
|
||||
/**
|
||||
* When 'edge_aggressive' is set, then the revision walk will use
|
||||
* the '--object-edge-aggressive' option to mark even more objects
|
||||
* as uninteresting.
|
||||
*/
|
||||
int edge_aggressive;
|
||||
|
||||
/**
|
||||
* Specify a sparse-checkout definition to match our paths to. Do not
|
||||
* walk outside of this sparse definition. If the patterns are in
|
||||
|
||||
Reference in New Issue
Block a user