Hi, On Mon, 23 Sep 2019, Kunal Tyagi via GitGitGadget wrote: > From: Kunal Tyagi <tyagi.kunal@xxxxxxxx> > > Signed-off-by: Kunal Tyagi <tyagi.kunal@xxxxxxxx> Could you move most (if not all) of the explanation from the cover letter (read: the PR description) into the commit message? The patch looks good, I just have one suggestion: > --- > git-add--interactive.perl | 2 +- > t/t3701-add-interactive.sh | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/git-add--interactive.perl b/git-add--interactive.perl > index c20ae9e210..3951c25a28 100755 > --- a/git-add--interactive.perl > +++ b/git-add--interactive.perl > @@ -1541,7 +1541,7 @@ sub patch_update_file { > for (@{$hunk[$ix]{DISPLAY}}) { > print; > } > - print colored $prompt_color, > + print colored $prompt_color,"(", $ix+1, "/$num) ", It would probably make sense to use `.` rather than `,`, the dot is the concatenation operator in Perl. Thanks, Johannes > sprintf(__($patch_update_prompt_modes{$patch_mode}{$hunk[$ix]{TYPE}}), $other); > > my $line = prompt_single_character; > diff --git a/t/t3701-add-interactive.sh b/t/t3701-add-interactive.sh > index 69991a3168..3a2d9fb607 100755 > --- a/t/t3701-add-interactive.sh > +++ b/t/t3701-add-interactive.sh > @@ -314,7 +314,7 @@ test_expect_success C_LOCALE_OUTPUT 'add first line works' ' > git commit -am "clear local changes" && > git apply patch && > printf "%s\n" s y y | git add -p file 2>error | > - sed -n -e "s/^Stage this hunk[^@]*\(@@ .*\)/\1/" \ > + sed -n -e "s/^(.*) Stage this hunk[^@]*\(@@ .*\)/\1/" \ > -e "/^[-+@ \\\\]"/p >output && > test_must_be_empty error && > git diff --cached >diff && > -- > gitgitgadget >