File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ def run(
123
123
--------
124
124
>>> git = Git(dir=tmp_path)
125
125
>>> git.run(['help'])
126
- "usage: git [--version] [--help ] [-C <path>]..."
126
+ "usage: git [... ] [-C <path>]..."
127
127
"""
128
128
129
129
if isinstance (args , Sequence ):
@@ -1075,16 +1075,16 @@ def help(
1075
1075
>>> git = Git(dir=tmp_path)
1076
1076
1077
1077
>>> git.help()
1078
- "usage: git [--version] [--help ] [-C <path>]..."
1078
+ "usage: git [... ] [-C <path>]..."
1079
1079
1080
1080
>>> git.help(all=True)
1081
1081
"See 'git help <command>' to read about a specific subcommand..."
1082
1082
1083
1083
>>> git.help(info=True)
1084
- "usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]..."
1084
+ "usage: git ... [-C <path>] [-c <name>=<value>]..."
1085
1085
1086
1086
>>> git.help(man=True)
1087
- "usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]..."
1087
+ "usage: git ... [-C <path>] [-c <name>=<value>]..."
1088
1088
"""
1089
1089
local_flags : list [str ] = []
1090
1090
You can’t perform that action at this time.
0 commit comments