diff mbox series

branch: missing space fix at line 313

Message ID 20220111123627.58625-1-bagasdotme@gmail.com (mailing list archive)
State Accepted
Commit 5ad87959d2b76ca1707a6d320391e1c35641758a
Headers show
Series branch: missing space fix at line 313 | expand

Commit Message

Bagas Sanjaya Jan. 11, 2022, 12:36 p.m. UTC
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 <bagasdotme@gmail.com>
---
 branch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: 90d242d36e248acfae0033274b524bfa55a947fd
diff mbox series

Patch

diff --git a/branch.c b/branch.c
index 829130bb11..5d20a2e848 100644
--- a/branch.c
+++ b/branch.c
@@ -310,7 +310,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);