William Pursell <bill.pursell@xxxxxxxxx> writes: > diff --git a/git-add--interactive.perl b/git-add--interactive.perl > index b0223c3..7974cd1 100755 > --- a/git-add--interactive.perl > +++ b/git-add--interactive.perl > @@ -919,7 +919,7 @@ sub patch_update_file { > for (@{$hunk[$ix]{DISPLAY}}) { > print; > } > - print colored $prompt_color, "Stage this hunk [y/n/a/d$other/?]? "; > + print colored $prompt_color, "Stage hunk $ix [y/n/a/d$other/?]? "; > my $line = <STDIN>; > if ($line) { > if ($line =~ /^y/i) { Do we know how many hunks we have at this point (and remember we need to adjust the number of hunks after splitting)? The original one was unfriendly in that it asked "Do you want this or not? We'd rather not to say where you are nor how many more there are". Your update is slightly better but not enough: "Do you want this one or not? It is the second one but we still won't tell you how many more there are". I'd prefer it to ask "Stage hunk 2 (of 35)?" if you are adding more words here. I doubt "jump to hunk specified by hunk number" is useful in general. You wouldn't know what hunk number the hunk you are interested in has, until you scroll through them all. "Jump to hunk around line number X in the preimage", or "jump to a hunk in function Y" may be useful (the latter you can do with "/^@@.*funcname" with your slash-search patch). -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html