From 2e108ac8fa9d1d71fa5373e17020e34d6cf7a23b Mon Sep 17 00:00:00 2001 From: Steve Moyer <smoyer1@selesy.com> Date: Thu, 29 May 2025 09:10:26 -0400 Subject: [PATCH] docs(cli): improve wording of help for the -C flag --- commands/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/root.go b/commands/root.go index 30e1a090..38db1577 100644 --- a/commands/root.go +++ b/commands/root.go @@ -55,7 +55,7 @@ the same git remote you are already using to collaborate with other people. } env := execenv.NewEnv() - cmd.PersistentFlags().StringArrayVarP(&env.RepoPath, "repo-path", "C", []string{}, "Path to the git repository") + cmd.PersistentFlags().StringArrayVarP(&env.RepoPath, "repo-path", "C", []string{}, `Run as if git-bug was started in <path> instead of the current working directory.`) addCmdWithGroup(bugcmd.NewBugCommand(env), entityGroup) addCmdWithGroup(usercmd.NewUserCommand(env), entityGroup) -- GitLab