Richard Quirk <richard.quirk@xxxxxxxxx> wrote: > (Also, minor thing this, but the docs for git-config > says it is diff.renameLimit but diff.c uses diff.renamelimit.) Someone else already responded about how to set this limit, but I wanted to clarify what the docs vs. the code were doing here. The docs use camelCase as it is prettier to read multiple words that useCamelCase than alllowercaselikethis. Internally when we parse your config file we lowercase the entire string so that the code can worry only about the lowercase variant. That's why you see it all lowercase in diff.c, but the docs suggest you to use the camelCase format. -- Shawn. - 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