We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f450f14 commit dfe3b83Copy full SHA for dfe3b83
git_sim/__main__.py
@@ -125,7 +125,7 @@ def main(
125
126
app.command()(git_sim.add.add)
127
app.command()(git_sim.branch.branch)
128
-app.command()(git_sim.cherrypick.cherrypick)
+app.command()(git_sim.cherrypick.cherry_pick)
129
app.command()(git_sim.commit.commit)
130
app.command()(git_sim.log.log)
131
app.command()(git_sim.merge.merge)
git_sim/cherrypick.py
@@ -70,7 +70,7 @@ def construct(self):
70
self.show_outro()
71
72
73
-def cherrypick(
+def cherry_pick(
74
commit: str = typer.Argument(
75
...,
76
help="The ref (branch/tag), or commit ID to simulate cherry-pick onto active branch",
0 commit comments