| 713 | } |
| 714 | |
| 715 | void repo_config_values_init(struct repo_config_values *cfg) |
| 716 | { |
| 717 | cfg->attributes_file = NULL; |
| 718 | cfg->apply_sparse_checkout = 0; |
| 719 | cfg->branch_track = BRANCH_TRACK_REMOTE; |
| 720 | cfg->trust_ctime = 1; |
| 721 | cfg->check_stat = 1; |
| 722 | cfg->zlib_compression_level = Z_BEST_SPEED; |
| 723 | cfg->pack_compression_level = Z_DEFAULT_COMPRESSION; |
| 724 | cfg->precomposed_unicode = -1; /* see probe_utf8_pathname_composition() */ |
| 725 | cfg->core_sparse_checkout_cone = 0; |
| 726 | cfg->sparse_expect_files_outside_of_patterns = 0; |
| 727 | cfg->warn_on_object_refname_ambiguity = 1; |
| 728 | } |
no outgoing calls
no test coverage detected