| 501 | } |
| 502 | |
| 503 | static void free_message(struct commit *commit, struct commit_message *msg) |
| 504 | { |
| 505 | free(msg->parent_label); |
| 506 | free(msg->label); |
| 507 | free(msg->subject); |
| 508 | repo_unuse_commit_buffer(the_repository, commit, msg->message); |
| 509 | } |
| 510 | |
| 511 | const char *rebase_resolvemsg = |
| 512 | N_("Resolve all conflicts manually, mark them as resolved with\n" |
no test coverage detected