On Tue, Feb 02, 2016 at 09:54:21PM +0200, Dan Aloni wrote: > Previously, before 5498c57cdd63, many people did the following: > > git config --global user.email "(none)" > > This was helpful for people with more than one E-Mail address, > targeting different E-Mail addresses for different clones. > as it barred git from creating commit unless the user.email > config was set in the per-clone config to the correct E-Mail > address. > > Now, since the original 'bug' was fixed, and practically every > string is acceptable for user.email and user.name, it is best > to reimplement the feature not as an exploit of a bug, but as > an actual feature. Just when I dare to think "somebody cannot possibly be relying on this arcane behavior", I am proven wrong. :) The motivating case for your patch makes sense to me. In the implementation, though: > + if (strict && email && !strcmp(email, "(per-repo)")) { > + die("email is '(per-repo)', suggesting to set specific email " > + "for the current repo"); > + } I find it disappointing that we go back to looking for magic sequences in the string. Could we perhaps do this more cleanly with a new config option? Like a "user.guessIdent" which defaults to true, but people can set to false. And without that, we do not do any automagic at all; we get the values from the GIT_COMMITTER_* environment or the user.{name,email} config variables, or we die(). I think that should allow your use case (and extend the same feature to user.name). It wouldn't work on older versions of git, but nor would your fix here (the only way to do that is to re-instate "(none)" as magical). -Peff -- 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