mirror of
https://github.com/git/git.git
synced 2024-11-28 12:34:08 +08:00
checkout: use add_pending_{object,sha1} in orphan check
Instead of building a list of textual arguments for setup_revisions, use add_pending_object and add_pending_sha1 to queue the objects directly. This is both faster and simpler. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
26c3177ee4
commit
468224e580
@ -588,24 +588,11 @@ static void update_refs_for_switch(struct checkout_opts *opts,
|
||||
report_tracking(new);
|
||||
}
|
||||
|
||||
struct rev_list_args {
|
||||
int argc;
|
||||
int alloc;
|
||||
const char **argv;
|
||||
};
|
||||
|
||||
static void add_one_rev_list_arg(struct rev_list_args *args, const char *s)
|
||||
static int add_pending_uninteresting_ref(const char *refname,
|
||||
const unsigned char *sha1,
|
||||
int flags, void *cb_data)
|
||||
{
|
||||
ALLOC_GROW(args->argv, args->argc + 1, args->alloc);
|
||||
args->argv[args->argc++] = s;
|
||||
}
|
||||
|
||||
static int add_one_ref_to_rev_list_arg(const char *refname,
|
||||
const unsigned char *sha1,
|
||||
int flags,
|
||||
void *cb_data)
|
||||
{
|
||||
add_one_rev_list_arg(cb_data, refname);
|
||||
add_pending_sha1(cb_data, refname, sha1, flags | UNINTERESTING);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -684,19 +671,17 @@ static void suggest_reattach(struct commit *commit, struct rev_info *revs)
|
||||
*/
|
||||
static void orphaned_commit_warning(struct commit *commit)
|
||||
{
|
||||
struct rev_list_args args = { 0, 0, NULL };
|
||||
struct rev_info revs;
|
||||
|
||||
add_one_rev_list_arg(&args, "(internal)");
|
||||
add_one_rev_list_arg(&args, sha1_to_hex(commit->object.sha1));
|
||||
add_one_rev_list_arg(&args, "--not");
|
||||
for_each_ref(add_one_ref_to_rev_list_arg, &args);
|
||||
add_one_rev_list_arg(&args, "--");
|
||||
add_one_rev_list_arg(&args, NULL);
|
||||
struct object *object = &commit->object;
|
||||
|
||||
init_revisions(&revs, NULL);
|
||||
if (setup_revisions(args.argc - 1, args.argv, &revs, NULL) != 1)
|
||||
die(_("internal error: only -- alone should have been left"));
|
||||
setup_revisions(0, NULL, &revs, NULL);
|
||||
|
||||
object->flags &= ~UNINTERESTING;
|
||||
add_pending_object(&revs, object, sha1_to_hex(object->sha1));
|
||||
|
||||
for_each_ref(add_pending_uninteresting_ref, &revs);
|
||||
|
||||
if (prepare_revision_walk(&revs))
|
||||
die(_("internal error in revision walk"));
|
||||
if (!(commit->object.flags & UNINTERESTING))
|
||||
|
Loading…
Reference in New Issue
Block a user