On Tue, Feb 6, 2018 at 3:36 AM, Nicolas Morey-Chaisemartin <[email protected]> wrote: > Add a --edit option whichs allows modifying the messages provided by -m or -F, > the same way git commit --edit does. > > Signed-off-by: Nicolas Morey-Chaisemartin <[email protected]> > --- > Changes since v2 ( > https://public-inbox.org/git/[email protected] ): > * Add [-e] to git tag summary
Thanks, I think this addresses all my comments from previous rounds. Just a couple minor style issues below... > diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh > @@ -452,6 +452,21 @@ test_expect_success \ > +> +test_expect_success \ > + 'creating an annotated tag with -m message --edit should succeed' ' > + EDITOR=./fakeeditor git tag -m "A message" --edit > annotated-tag-edit && Whitespace between 'fakeeditor' and 'git' is a tab but should be a space. > + get_tag_msg annotated-tag-edit >actual && > + test_cmp expect actual > +' > @@ -465,6 +480,21 @@ test_expect_success \ > +test_expect_success \ > + 'creating an annotated tag with -F messagefile --edit should succeed' > ' > + EDITOR=./fakeeditor git tag -F msgfile --edit > file-annotated-tag-edit && Ditto. > + get_tag_msg file-annotated-tag-edit >actual && > + test_cmp expect actual > +'

