| 3154 | } |
| 3155 | |
| 3156 | static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf) |
| 3157 | { |
| 3158 | strbuf_reset(buf); |
| 3159 | if (!read_oneliner(buf, rebase_path_strategy(), 0)) |
| 3160 | return; |
| 3161 | opts->strategy = strbuf_detach(buf, NULL); |
| 3162 | if (!read_oneliner(buf, rebase_path_strategy_opts(), 0)) |
| 3163 | return; |
| 3164 | |
| 3165 | parse_strategy_opts(opts, buf->buf); |
| 3166 | } |
| 3167 | |
| 3168 | static int read_trailers(struct replay_opts *opts, struct strbuf *buf) |
| 3169 | { |
no test coverage detected