"george espinoza via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: george espinoza <gespinoz2019@xxxxxxxxx> > > Prepare this command which currently handles its own argv to use > parse-options instead. A lot of the commands already have > parse-options and in git.c cmd_struct with the "NO_PARSEOPT" are > the one's that still need it. > > Signed-off-by: george espinoza <gespinoz2019@xxxxxxxxx> > --- > builtin/merge-ours.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/builtin/merge-ours.c b/builtin/merge-ours.c > index 4594507420..3980f4899a 100644 > --- a/builtin/merge-ours.c > +++ b/builtin/merge-ours.c > @@ -11,6 +11,11 @@ > #include "git-compat-util.h" > #include "builtin.h" > #include "diff.h" > +#include "parse-options.h" > + > +/* parse-options.h added to initiate replacement of manual option parsing > + * with parse-options. > + */ See Documentation/CodingGuidelines and learn how we write multi-line comments. Since there is no "manual option parsing" to be replaced, there is no other change to this file, I guess (so what's the point of this step?).