MCPcopy Create free account
hub / github.com/git/git / managed_skipped

Function managed_skipped

bisect.c:656–672  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

654}
655
656static struct commit_list *managed_skipped(struct commit_list *list,
657 struct commit_list **tried)
658{
659 int count, skipped_first;
660
661 *tried = NULL;
662
663 if (!skipped_revs.nr)
664 return list;
665
666 list = filter_skipped(list, tried, 0, &count, &skipped_first);
667
668 if (!skipped_first)
669 return list;
670
671 return skip_away(list, count);
672}
673
674static void bisect_rev_setup(struct repository *r, struct rev_info *revs,
675 struct strvec *rev_argv,

Callers 1

bisect_next_allFunction · 0.85

Calls 2

filter_skippedFunction · 0.85
skip_awayFunction · 0.85

Tested by

no test coverage detected