Matt Kraai schrieb: > If the user runs > > git config --global user.name Your Name > > as suggested, user.name will be set to "Your". With this patch, the > suggested command will be > > git config --global user.name 'Your Name' > > which will set user.name to "Your Name" and hopefully help users avoid > the former mistake. Actually, I would prefer that the suggested command is git config --global user.name "Your Name" i.e., with double-quotes, because then the suggestion is also correct for Windows users who run git from CMD: in this environment, single-quotes do not quote, but double-quotes do. -- Hannes -- 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