| 1494 | } |
| 1495 | |
| 1496 | char *git_system_config(void) |
| 1497 | { |
| 1498 | char *system_config = xstrdup_or_null(getenv("GIT_CONFIG_SYSTEM")); |
| 1499 | if (!system_config) |
| 1500 | system_config = system_path(ETC_GITCONFIG); |
| 1501 | normalize_path_copy(system_config, system_config); |
| 1502 | return system_config; |
| 1503 | } |
| 1504 | |
| 1505 | char *git_global_config(void) |
| 1506 | { |
no test coverage detected