| 2691 | } |
| 2692 | |
| 2693 | static int parse_from(struct branch *b) |
| 2694 | { |
| 2695 | const char *from; |
| 2696 | |
| 2697 | if (!skip_prefix(command_buf.buf, "from ", &from)) |
| 2698 | return 0; |
| 2699 | |
| 2700 | return parse_objectish(b, from); |
| 2701 | } |
| 2702 | |
| 2703 | static int parse_objectish_with_prefix(struct branch *b, const char *prefix) |
| 2704 | { |
no test coverage detected