Re: Patch that modifies git usage message
From: Stefan Beller <hidden>
Date: 2016-06-15 23:04:36
On Fri, May 1, 2015 at 4:01 AM, Alangi Derick [off-list ref] wrote:
This patch just modifies the "usage" word to "Usage" which enhances readability. Below is the patch Regards Alangi Derick Ndimnain
It's easier to have the patch in the email itself, this looks it's some form of attachment. Checkout Documentation/SubmittingPatches (protip: get "git send-email" working, it will send in the preferred way by default for nearly any open source project using email based workflows.) There are also some resources on the web, how to send patches, although it should be all covered in our Documentation, http://alblue.bandlem.com/2011/12/git-tip-of-week-patches-by-email.html For the patch itself: $ grep -r usage *.c builtin/*.c |wc -l 551 $ grep -r Usage *.c builtin/*.c |wc -l 3 The community agreed (maybe subconciously) to prefer lower case for the 'usage' string, so I don't think this is an improvement.