Karsten Blees <karsten.bl...@gmail.com> writes:

> 'git update-index --verbose' consistently reports paths relative to the
> work-tree root. The only exception is the '--again' option, which reports
> paths relative to the current working directory.
>
> Change do_reupdate to use non-prefixed paths.

Interesting.

This looks like a genuine fix unrelated to the use of the new hashmap.

>
> Signed-off-by: Karsten Blees <bl...@dcon.de>
> ---
>  builtin/update-index.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/builtin/update-index.c b/builtin/update-index.c
> index e3a10d7..d180d80 100644
> --- a/builtin/update-index.c
> +++ b/builtin/update-index.c
> @@ -579,7 +579,7 @@ static int do_reupdate(int ac, const char **av,
>                * or worse yet 'allow_replace', active_nr may decrease.
>                */
>               save_nr = active_nr;
> -             update_one(ce->name + prefix_length, prefix, prefix_length);
> +             update_one(ce->name, NULL, 0);
>               if (save_nr != active_nr)
>                       goto redo;
>       }
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to