From 2e2c0be51ed33598a03db51952993514708240d4 Mon Sep 17 00:00:00 2001 From: Des Preston Date: Mon, 28 Mar 2022 20:47:05 +0000 Subject: [PATCH] worktree: include repair cmd in usage The worktree repair command was not added to the usage menu for the worktree command. This commit adds the usage of 'worktree repair' according to the existing docs. Signed-off-by: Des Preston Acked-by: Eric Sunshine Signed-off-by: Junio C Hamano --- builtin/worktree.c | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/worktree.c b/builtin/worktree.c index 2838254f7f..498975c1fd 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -22,6 +22,7 @@ static const char * const worktree_usage[] = { N_("git worktree move "), N_("git worktree prune []"), N_("git worktree remove [] "), + N_("git worktree repair [...]"), N_("git worktree unlock "), NULL };