On Thu, 18 Feb 2021 at 01:29, Junio C Hamano <gitster@xxxxxxxxx> wrote: > [...] > > +for opt in --all --include --only > > +do > > + test_fixup_reword_opt $opt > > +done > > As I suspected earlier, a pathspec is not tested here, but it should > be. > Okay, I will add it here. > > +test_expect_success '--fixup=reword: -F give error message' ' > > + echo "fatal: Only one of -c/-C/-F/--fixup can be used." >expect && > > + test_must_fail git commit --fixup=reword:HEAD~ -F msg 2>actual && > > + test_cmp expect actual > > +' > > Why? If you can use -m msg, you should be able to use -F msgfile, > too, no? Earlier I was thinking to let the `--fixup=amend:` use the same options as of current `--fixup=` . But yes I agree that there should be -F option also with `amend` and `reword`. Thanks for the corrections, will do all the changes and update in the next revision. Thanks and Regards, Charvi