Signed-off-by: Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxxx> --- Hi Eric, If you need to re-roll your 'es/worktree-duplicate-paths' branch, could you please squash this into the relevant patch (commit 71806ee9e8 (worktree: prune linked worktree referencing main worktree path, 2020-06-08)). Note that this is based on top of the 'pu' branch, and Junio has a fixup patch (commit 4b01d684fe (SQUASH??? -Werror=main, 2020-06-08)) which also changes this line of code (s/main/main_path/). Thanks! ATB, Ramsay Jones builtin/worktree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/worktree.c b/builtin/worktree.c index 7762333228..2d8540bdae 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -199,7 +199,7 @@ static void prune_worktrees(void) strbuf_add_absolute_path(&main_path, get_git_common_dir()); /* massage main worktree absolute path to match 'gitdir' content */ strbuf_strip_suffix(&main_path, "/."); - string_list_append(&kept, strbuf_detach(&main_path, 0)); + string_list_append(&kept, strbuf_detach(&main_path, NULL)); prune_dups(&kept); string_list_clear(&kept, 1); -- 2.27.0