| 33 | } |
| 34 | |
| 35 | int cmd__partial_clone(int argc, const char **argv) |
| 36 | { |
| 37 | setup_git_directory(the_repository); |
| 38 | |
| 39 | if (argc < 4) |
| 40 | die("too few arguments"); |
| 41 | |
| 42 | if (!strcmp(argv[1], "object-info")) |
| 43 | object_info(argv[2], argv[3]); |
| 44 | else |
| 45 | die("invalid argument '%s'", argv[1]); |
| 46 | |
| 47 | return 0; |
| 48 | } |
nothing calls this directly
no test coverage detected