| 4855 | } |
| 4856 | |
| 4857 | int apply_autostash_ref(struct repository *r, const char *refname, |
| 4858 | const char *label_ours, const char *label_theirs, |
| 4859 | const char *label_base, const char *stash_msg) |
| 4860 | { |
| 4861 | return apply_save_autostash_ref(r, refname, 1, |
| 4862 | label_ours, label_theirs, label_base, |
| 4863 | stash_msg); |
| 4864 | } |
| 4865 | |
| 4866 | static int checkout_onto(struct repository *r, struct replay_opts *opts, |
| 4867 | const char *onto_name, const struct object_id *onto, |
no test coverage detected