| 82 | } |
| 83 | |
| 84 | char *alias_lookup(const char *alias) |
| 85 | { |
| 86 | struct config_alias_data data = { alias, NULL }; |
| 87 | |
| 88 | read_early_config(the_repository, config_alias_cb, &data); |
| 89 | |
| 90 | return data.v; |
| 91 | } |
| 92 | |
| 93 | void list_aliases(struct string_list *list) |
| 94 | { |
no test coverage detected