Jeff King <peff@xxxxxxxx> writes: > This message looks overly long to me, but I wanted to match the existing > messages. Another option would be just: > > warning: overwriting 'three/one' Yes, I think it makes perfect sense to drop the ugly "source=one destination=two" cruft, both for single-source and multiple-source cases. > builtin/mv.c | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/builtin/mv.c b/builtin/mv.c > index ae6c30c..c9ecb03 100644 > --- a/builtin/mv.c > +++ b/builtin/mv.c > @@ -177,7 +177,8 @@ int cmd_mv(int argc, const char **argv, const char *prefix) > * check both source and destination > */ > if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) { > - warning(_("%s; will overwrite!"), bad); > + warning(_("%s (will overwrite), source=%s, destination=%s"), > + bad, src, dst); > bad = NULL; > } else > bad = _("Cannot overwrite"); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html