From: Bagas Sanjaya Date: Tue, 11 Jan 2022 12:36:27 +0000 (+0700) Subject: branch: missing space fix at line 313 X-Git-Tag: v2.35.0-rc1~8^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68d924e1de83b1e865acdca22b17a20fdec3add6;p=thirdparty%2Fgit.git branch: missing space fix at line 313 The message introduced by commit 593a2a5d06 (branch: protect branches checked out in all worktrees, 2021-12-01) is missing a space in the first line, add it. Signed-off-by: Bagas Sanjaya Signed-off-by: Junio C Hamano --- diff --git a/branch.c b/branch.c index 2cfe496d24..c37d9fb56b 100644 --- a/branch.c +++ b/branch.c @@ -212,7 +212,7 @@ int validate_new_branchname(const char *name, struct strbuf *ref, int force) worktrees = get_worktrees(); wt = find_shared_symref(worktrees, "HEAD", ref->buf); if (wt && !wt->is_bare) - die(_("cannot force update the branch '%s'" + die(_("cannot force update the branch '%s' " "checked out at '%s'"), ref->buf + strlen("refs/heads/"), wt->path); free_worktrees(worktrees);