| 91 | } |
| 92 | |
| 93 | void list_aliases(struct string_list *list) |
| 94 | { |
| 95 | struct config_alias_data data = { NULL, NULL, list }; |
| 96 | |
| 97 | read_early_config(the_repository, config_alias_cb, &data); |
| 98 | } |
| 99 | |
| 100 | void quote_cmdline(struct strbuf *buf, const char **argv) |
| 101 | { |
no test coverage detected