| 196 | } |
| 197 | |
| 198 | int cmd_remote_ext(int argc, |
| 199 | const char **argv, |
| 200 | const char *prefix, |
| 201 | struct repository *repo UNUSED) |
| 202 | { |
| 203 | BUG_ON_NON_EMPTY_PREFIX(prefix); |
| 204 | |
| 205 | show_usage_if_asked(argc, argv, usage_msg); |
| 206 | |
| 207 | if (argc != 3) |
| 208 | usage(usage_msg); |
| 209 | |
| 210 | return command_loop(argv[2]); |
| 211 | } |
nothing calls this directly
no test coverage detected