Browse Source

cli: usage: make `branch` help text less context-specific

James Addison 5 days ago
parent
commit
cd0450a3e7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dulwich/cli.py

+ 2 - 2
dulwich/cli.py

@@ -739,7 +739,7 @@ class cmd_branch(Command):
         parser.add_argument(
             "branch",
             type=str,
-            help="Name of the branch to create",
+            help="Name of the branch",
         )
         parser.add_argument(
             "-d",
@@ -768,7 +768,7 @@ class cmd_checkout(Command):
         parser.add_argument(
             "branch",
             type=str,
-            help="Name of the branch to checkout",
+            help="Name of the branch",
         )
         parser.add_argument(
             "-f",