| 880 | } |
| 881 | |
| 882 | const char *git_attr_global_file(void) |
| 883 | { |
| 884 | struct repo_config_values *cfg = repo_config_values(the_repository); |
| 885 | if (!cfg->attributes_file) |
| 886 | cfg->attributes_file = xdg_config_home("attributes"); |
| 887 | |
| 888 | return cfg->attributes_file; |
| 889 | } |
| 890 | |
| 891 | int git_attr_system_is_enabled(void) |
| 892 | { |
no test coverage detected