Skip to content

Commit 5e65ee3

Browse files
moygitster
authored andcommitted
Move "show_all_errors = 1" to setup_unpack_trees_porcelain()
Not only this makes the code clearer since setting up the porcelain error message is meant to work with show_all_errors, but this fixes a call to setup_unpack_trees_porcelain() in git_merge_trees() which did not set show_all_errors. add_rejected_path() used to double-check whether it was running in plumbing mode. This check was ineffective since it was setting show_all_errors too late for traverse_trees() to see it, and is made useless by this patch. Remove it. Signed-off-by: Matthieu Moy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e294030 commit 5e65ee3

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

builtin/checkout.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,6 @@ static int merge_working_tree(struct checkout_opts *opts,
392392
topts.dir = xcalloc(1, sizeof(*topts.dir));
393393
topts.dir->flags |= DIR_SHOW_IGNORED;
394394
topts.dir->exclude_per_dir = ".gitignore";
395-
topts.show_all_errors = 1;
396395
tree = parse_tree_indirect(old->commit ?
397396
old->commit->object.sha1 :
398397
(unsigned char *)EMPTY_TREE_SHA1_BIN);

builtin/merge.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,6 @@ int checkout_fast_forward(const unsigned char *head, const unsigned char *remote
704704
opts.verbose_update = 1;
705705
opts.merge = 1;
706706
opts.fn = twoway_merge;
707-
opts.show_all_errors = 1;
708707
setup_unpack_trees_porcelain(&opts, "merge");
709708

710709
trees[nr_trees] = parse_tree_indirect(head);

unpack-trees.c

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
9494
"The following Working tree files would be overwritten by sparse checkout update:\n%s";
9595
msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] =
9696
"The following Working tree files would be removed by sparse checkout update:\n%s";
97+
98+
opts->show_all_errors = 1;
9799
}
98100

99101
static void add_entry(struct unpack_trees_options *o, struct cache_entry *ce,
@@ -120,12 +122,6 @@ static int add_rejected_path(struct unpack_trees_options *o,
120122
const char *path)
121123
{
122124
struct rejected_paths_list *newentry;
123-
int porcelain = o && (o)->msgs[e];
124-
/*
125-
* simply display the given error message if in plumbing mode
126-
*/
127-
if (!porcelain)
128-
o->show_all_errors = 0;
129125
if (!o->show_all_errors)
130126
return error(ERRORMSG(o, e), path);
131127

unpack-trees.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ enum unpack_trees_error_types {
2424

2525
/*
2626
* Sets the list of user-friendly error messages to be used by the
27-
* command "cmd" (either merge or checkout)
27+
* command "cmd" (either merge or checkout), and show_all_errors to 1.
2828
*/
2929
void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
3030
const char *cmd);

0 commit comments

Comments
 (0)