Re: Wishlist: git commit --no-edit
From: Jeff King <hidden>
Date: 2016-06-15 22:55:10
[+cc git@vger; please keep discussion on list] On Fri, Nov 02, 2012 at 10:37:27AM -0200, Thiago Farina wrote:
quoted
quoted
quoted
git commit --amend --no-edit[...]quoted
Yup, should be working since 1.7.9.[...] I doesn't appear in the help either: $ git version git version 1.8.0.rc2 $ git commit -h 2>&1 | grep edit -c, --reedit-message <commit> reuse and edit message from specified commit -e, --edit force edit of commit
Yeah, parse_options doesn't advertise negative forms of boolean options, as they are implied. I don't think it's a big deal, especially now that it is covered in more detail in the manpage. I think changing it would probably involve adding "--no-edit" as a separate entry in the options struct. -Peff