Skip to content

Commit 68d924e

Browse files
bagasmegitster
authored andcommitted
branch: missing space fix at line 313
The message introduced by commit 593a2a5 (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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 593a2a5 commit 68d924e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

branch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ int validate_new_branchname(const char *name, struct strbuf *ref, int force)
212212
worktrees = get_worktrees();
213213
wt = find_shared_symref(worktrees, "HEAD", ref->buf);
214214
if (wt && !wt->is_bare)
215-
die(_("cannot force update the branch '%s'"
215+
die(_("cannot force update the branch '%s' "
216216
"checked out at '%s'"),
217217
ref->buf + strlen("refs/heads/"), wt->path);
218218
free_worktrees(worktrees);

0 commit comments

Comments
 (0)