зеркало из https://github.com/microsoft/git.git
wt-status.c: set the committable flag in the collect phase
In an update to fix a bug with "commit --dry-run" it was found that the committable flag was broken. The update was, at the time, accepted as it was better than the previous version. [1] Since the setting of the committable flag had been done in wt_longstatus_print_updated, move it to wt_status_collect_updated_cb. Set the committable flag in wt_status_collect_changes_initial to keep from introducing a rebase regression. Instead of setting the committable flag in show_merge_in_progress, in wt_status_cllect check for a merge that has not been committed. If present then set the committable flag. Change the tests to expect success since updates to the wt-status broken code section is being fixed. [1] https://public-inbox.org/git/xmqqr3gcj9i5.fsf@gitster.mtv.corp.google.com/ Signed-off-by: Stephen P. Smith <ischis2@cox.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
8282f59f90
Коммит
f3bd35fa0d
|
@ -99,12 +99,12 @@ test_expect_success '--dry-run with stuff to commit returns ok' '
|
||||||
git commit -m next -a --dry-run
|
git commit -m next -a --dry-run
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_failure '--short with stuff to commit returns ok' '
|
test_expect_success '--short with stuff to commit returns ok' '
|
||||||
echo bongo bongo bongo >>file &&
|
echo bongo bongo bongo >>file &&
|
||||||
git commit -m next -a --short
|
git commit -m next -a --short
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_failure '--porcelain with stuff to commit returns ok' '
|
test_expect_success '--porcelain with stuff to commit returns ok' '
|
||||||
echo bongo bongo bongo >>file &&
|
echo bongo bongo bongo >>file &&
|
||||||
git commit -m next -a --porcelain
|
git commit -m next -a --porcelain
|
||||||
'
|
'
|
||||||
|
@ -682,7 +682,7 @@ test_expect_success '--dry-run with conflicts fixed from a merge' '
|
||||||
git commit -m "conflicts fixed from merge."
|
git commit -m "conflicts fixed from merge."
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_failure '--dry-run --short' '
|
test_expect_success '--dry-run --short' '
|
||||||
>test-file &&
|
>test-file &&
|
||||||
git add test-file &&
|
git add test-file &&
|
||||||
git commit --dry-run --short
|
git commit --dry-run --short
|
||||||
|
|
13
wt-status.c
13
wt-status.c
|
@ -540,10 +540,12 @@ static void wt_status_collect_updated_cb(struct diff_queue_struct *q,
|
||||||
/* Leave {mode,oid}_head zero for an add. */
|
/* Leave {mode,oid}_head zero for an add. */
|
||||||
d->mode_index = p->two->mode;
|
d->mode_index = p->two->mode;
|
||||||
oidcpy(&d->oid_index, &p->two->oid);
|
oidcpy(&d->oid_index, &p->two->oid);
|
||||||
|
s->committable = 1;
|
||||||
break;
|
break;
|
||||||
case DIFF_STATUS_DELETED:
|
case DIFF_STATUS_DELETED:
|
||||||
d->mode_head = p->one->mode;
|
d->mode_head = p->one->mode;
|
||||||
oidcpy(&d->oid_head, &p->one->oid);
|
oidcpy(&d->oid_head, &p->one->oid);
|
||||||
|
s->committable = 1;
|
||||||
/* Leave {mode,oid}_index zero for a delete. */
|
/* Leave {mode,oid}_index zero for a delete. */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -561,6 +563,7 @@ static void wt_status_collect_updated_cb(struct diff_queue_struct *q,
|
||||||
d->mode_index = p->two->mode;
|
d->mode_index = p->two->mode;
|
||||||
oidcpy(&d->oid_head, &p->one->oid);
|
oidcpy(&d->oid_head, &p->one->oid);
|
||||||
oidcpy(&d->oid_index, &p->two->oid);
|
oidcpy(&d->oid_index, &p->two->oid);
|
||||||
|
s->committable = 1;
|
||||||
break;
|
break;
|
||||||
case DIFF_STATUS_UNMERGED:
|
case DIFF_STATUS_UNMERGED:
|
||||||
d->stagemask = unmerged_mask(p->two->path);
|
d->stagemask = unmerged_mask(p->two->path);
|
||||||
|
@ -665,11 +668,13 @@ static void wt_status_collect_changes_initial(struct wt_status *s)
|
||||||
* code will output the stage values directly and not use the
|
* code will output the stage values directly and not use the
|
||||||
* values in these fields.
|
* values in these fields.
|
||||||
*/
|
*/
|
||||||
|
s->committable = 1;
|
||||||
} else {
|
} else {
|
||||||
d->index_status = DIFF_STATUS_ADDED;
|
d->index_status = DIFF_STATUS_ADDED;
|
||||||
/* Leave {mode,oid}_head zero for adds. */
|
/* Leave {mode,oid}_head zero for adds. */
|
||||||
d->mode_index = ce->ce_mode;
|
d->mode_index = ce->ce_mode;
|
||||||
oidcpy(&d->oid_index, &ce->oid);
|
oidcpy(&d->oid_index, &ce->oid);
|
||||||
|
s->committable = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -739,6 +744,7 @@ static int has_unmerged(struct wt_status *s)
|
||||||
|
|
||||||
void wt_status_collect(struct wt_status *s)
|
void wt_status_collect(struct wt_status *s)
|
||||||
{
|
{
|
||||||
|
struct wt_status_state state;
|
||||||
wt_status_collect_changes_worktree(s);
|
wt_status_collect_changes_worktree(s);
|
||||||
|
|
||||||
if (s->is_initial)
|
if (s->is_initial)
|
||||||
|
@ -746,6 +752,11 @@ void wt_status_collect(struct wt_status *s)
|
||||||
else
|
else
|
||||||
wt_status_collect_changes_index(s);
|
wt_status_collect_changes_index(s);
|
||||||
wt_status_collect_untracked(s);
|
wt_status_collect_untracked(s);
|
||||||
|
|
||||||
|
memset(&state, 0, sizeof(state));
|
||||||
|
wt_status_get_state(&state, s->branch && !strcmp(s->branch, "HEAD"));
|
||||||
|
if (state.merge_in_progress && !has_unmerged(s))
|
||||||
|
s->committable = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wt_longstatus_print_unmerged(struct wt_status *s)
|
static void wt_longstatus_print_unmerged(struct wt_status *s)
|
||||||
|
@ -786,7 +797,6 @@ static void wt_longstatus_print_updated(struct wt_status *s)
|
||||||
continue;
|
continue;
|
||||||
if (!shown_header) {
|
if (!shown_header) {
|
||||||
wt_longstatus_print_cached_header(s);
|
wt_longstatus_print_cached_header(s);
|
||||||
s->committable = 1;
|
|
||||||
shown_header = 1;
|
shown_header = 1;
|
||||||
}
|
}
|
||||||
wt_longstatus_print_change_data(s, WT_STATUS_UPDATED, it);
|
wt_longstatus_print_change_data(s, WT_STATUS_UPDATED, it);
|
||||||
|
@ -1089,7 +1099,6 @@ static void show_merge_in_progress(struct wt_status *s,
|
||||||
_(" (use \"git merge --abort\" to abort the merge)"));
|
_(" (use \"git merge --abort\" to abort the merge)"));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
s-> committable = 1;
|
|
||||||
status_printf_ln(s, color,
|
status_printf_ln(s, color,
|
||||||
_("All conflicts fixed but you are still merging."));
|
_("All conflicts fixed but you are still merging."));
|
||||||
if (s->hints)
|
if (s->hints)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче