Skip to content

Commit

Permalink
trace2:gvfs:experiment: report_tracking
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
  • Loading branch information
jeffhostetler authored and dscho committed Sep 27, 2022
1 parent 5fdeb99 commit 050adf8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion builtin/checkout.c
Original file line number Diff line number Diff line change
Expand Up @@ -986,8 +986,11 @@ static void update_refs_for_switch(const struct checkout_opts *opts,
remove_branch_state(the_repository, !opts->quiet);
strbuf_release(&msg);
if (!opts->quiet &&
(new_branch_info->path || (!opts->force_detach && !strcmp(new_branch_info->name, "HEAD"))))
(new_branch_info->path || (!opts->force_detach && !strcmp(new_branch_info->name, "HEAD")))) {
trace2_region_enter("exp", "report_tracking", the_repository);
report_tracking(new_branch_info);
trace2_region_leave("exp", "report_tracking", the_repository);
}
}

static int add_pending_uninteresting_ref(const char *refname,
Expand Down

0 comments on commit 050adf8

Please sign in to comment.