Skip to content

Commit 0ecd9d2

Browse files
dschogitster
authored andcommitted
built-in add -p: show different prompts for mode changes and deletions
Just like the Perl version, we now helpfully ask the user whether they want to stage a mode change, or a deletion. Note that we define the prompts in an array, in preparation for a later patch that changes those prompts to yet different versions for `git reset -p`, `git stash -p` and `git checkout -p` (which all call the `git add -p` machinery to do the actual work). Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5906d5d commit 0ecd9d2

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

add-patch.c

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
#include "color.h"
88
#include "diff.h"
99

10+
enum prompt_mode_type {
11+
PROMPT_MODE_CHANGE = 0, PROMPT_DELETION, PROMPT_HUNK
12+
};
13+
14+
static const char *prompt_mode[] = {
15+
N_("Stage mode change [y,n,a,d%s,?]? "),
16+
N_("Stage deletion [y,n,a,d%s,?]? "),
17+
N_("Stage this hunk [y,n,a,d%s,?]? ")
18+
};
19+
1020
struct hunk_header {
1121
unsigned long old_offset, old_count, new_offset, new_count;
1222
/*
@@ -422,6 +432,7 @@ static int patch_update_file(struct add_p_state *s,
422432
char ch;
423433
struct child_process cp = CHILD_PROCESS_INIT;
424434
int colored = !!s->colored.len;
435+
enum prompt_mode_type prompt_mode_type;
425436

426437
if (!file_diff->hunk_nr)
427438
return 0;
@@ -466,13 +477,20 @@ static int patch_update_file(struct add_p_state *s,
466477
strbuf_addstr(&s->buf, ",j");
467478
if (hunk_index + 1 < file_diff->hunk_nr)
468479
strbuf_addstr(&s->buf, ",J");
480+
481+
if (file_diff->deleted)
482+
prompt_mode_type = PROMPT_DELETION;
483+
else if (file_diff->mode_change && !hunk_index)
484+
prompt_mode_type = PROMPT_MODE_CHANGE;
485+
else
486+
prompt_mode_type = PROMPT_HUNK;
487+
469488
color_fprintf(stdout, s->s.prompt_color,
470489
"(%"PRIuMAX"/%"PRIuMAX") ",
471490
(uintmax_t)hunk_index + 1,
472491
(uintmax_t)file_diff->hunk_nr);
473492
color_fprintf(stdout, s->s.prompt_color,
474-
_("Stage this hunk [y,n,a,d%s,?]? "),
475-
s->buf.buf);
493+
_(prompt_mode[prompt_mode_type]), s->buf.buf);
476494
fflush(stdout);
477495
if (strbuf_getline(&s->answer, stdin) == EOF)
478496
break;

0 commit comments

Comments
 (0)