Merge branch 'sb/submodule-move-head-error-msg'
"git checkout --recurse-submodules another-branch" did not report in which submodule it failed to update the working tree, which resulted in an unhelpful error message. * sb/submodule-move-head-error-msg: submodule.c: report the submodule that an error occurs in
This commit is contained in:
@ -1682,7 +1682,7 @@ int submodule_move_head(const char *path,
|
||||
argv_array_push(&cp.args, new_head ? new_head : empty_tree_oid_hex());
|
||||
|
||||
if (run_command(&cp)) {
|
||||
ret = -1;
|
||||
ret = error(_("Submodule '%s' could not be updated."), path);
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user