opts.fn = threeway_merge;
opts.src_index = &the_index;
opts.dst_index = &the_index;
- set_porcelain_error_msgs(opts.msgs);
+ set_porcelain_error_msgs(opts.msgs, "merge");
init_tree_desc_from_tree(t+0, common);
init_tree_desc_from_tree(t+1, head);
return clean_merge;
}
-void set_porcelain_error_msgs(const char **msgs)
+void set_porcelain_error_msgs(const char **msgs, const char *cmd)
{
+ const char *msg;
+ char *tmp;
+ const char *cmd2 = strcmp(cmd, "checkout") ? cmd : "switch branches";
if (advice_commit_before_merge)
- msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] =
- "Your local changes to '%s' would be overwritten by merge. Aborting.\n"
- "Please, commit your changes or stash them before you can merge.";
+ msg = "Your local changes to '%%s' would be overwritten by %s. Aborting.\n"
+ "Please, commit your changes or stash them before you can %s.";
else
- msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] =
- "Your local changes to '%s' would be overwritten by merge. Aborting.";
+ msg = "Your local changes to '%%s' would be overwritten by %s. Aborting.";
+ tmp = xmalloc(strlen(msg) + strlen(cmd) + strlen(cmd2) - 3);
+ sprintf(tmp, msg, cmd, cmd2);
+ msgs[ERROR_WOULD_OVERWRITE] = tmp;
+ msgs[ERROR_NOT_UPTODATE_FILE] = tmp;
+
msgs[ERROR_NOT_UPTODATE_DIR] =
"Updating '%s' would lose untracked files in it. Aborting.";
- msgs[ERROR_WOULD_LOSE_UNTRACKED] =
- "Untracked working tree file '%s' would be %s by merge. Aborting";
+
+ if (advice_commit_before_merge)
+ msg = "Untracked working tree file '%%s' would be %%s by %s. Aborting"
+ "Please move or remove them before you can %s.";
+ else
+ msg = "Untracked working tree file '%%s' would be %%s by %s. Aborting";
+ tmp = xmalloc(strlen(msg) + strlen(cmd) + strlen(cmd2) - 3);
+ sprintf(tmp, msg, cmd, cmd2);
+ msgs[ERROR_WOULD_LOSE_UNTRACKED] = tmp;
}
int merge_trees(struct merge_options *o,
struct string_list current_directory_set;
};
-/* Sets the list of user-friendly error messages to be used by merge */
-void set_porcelain_error_msgs(const char **msgs);
+/*
+ * Sets the list of user-friendly error messages to be used by the
+ * command "cmd" (either merge or checkout)
+ */
+void set_porcelain_error_msgs(const char **msgs, const char *cmd);
/* merge_trees() but with recursive ancestor consolidation */
int merge_recursive(struct merge_options *o,
* Error messages expected by scripts out of plumbing commands such as
* read-tree. Non-scripted Porcelain is not required to use these messages
* and in fact are encouraged to reword them to better suit their particular
- * situation better. See how "git checkout" replaces ERROR_NOT_UPTODATE_FILE to
- * explain why it does not allow switching between branches when you have
- * local changes, for example.
+ * situation better. See how "git checkout" and "git merge" replaces
+ * them using set_porcelain_error_msgs(), for example.
*/
const char *unpack_plumbing_errors[NB_UNPACK_TREES_ERROR_TYPES] = {
/* ERROR_WOULD_OVERWRITE */