| 2503 | } |
| 2504 | |
| 2505 | int repo_config_get_split_index(struct repository *r) |
| 2506 | { |
| 2507 | int val; |
| 2508 | |
| 2509 | if (!repo_config_get_maybe_bool(r, "core.splitindex", &val)) |
| 2510 | return val; |
| 2511 | |
| 2512 | return -1; /* default value */ |
| 2513 | } |
| 2514 | |
| 2515 | int repo_config_get_max_percent_split_change(struct repository *r) |
| 2516 | { |
no test coverage detected