We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac4230 commit 5dc07d4Copy full SHA for 5dc07d4
app/commands/version.py
@@ -0,0 +1,10 @@
1
+import click
2
+
3
+from app.utils.click_utils import info
4
+from app.version import __version__
5
6
7
+@click.command()
8
+@click.pass_context
9
+def version(_: click.Context) -> None:
10
+ info(f"Git-Mastery CLI is currently {__version__}")
0 commit comments