CLI mostly set up

This commit is contained in:
2026-02-02 17:33:54 +01:00
parent f07d2dacfb
commit 6ebae74f93
13 changed files with 126 additions and 22 deletions

7
commands/commit.py Normal file
View File

@@ -0,0 +1,7 @@
def commit(
dry_run: bool = False,
force: bool = False,
no_apply: bool = False,
no_commit: bool = False,
):
print("Commit, force:", force)

6
commands/config.py Normal file
View File

@@ -0,0 +1,6 @@
def config():
print(
"""
Your config can be found at
"""
)

2
commands/init.py Normal file
View File

@@ -0,0 +1,2 @@
def init(force: bool = False):
print("Init")

2
commands/pull.py Normal file
View File

@@ -0,0 +1,2 @@
def pull(rebase: bool = False, apply: bool = False):
print("pull")

2
commands/push.py Normal file
View File

@@ -0,0 +1,2 @@
def push(force: bool = False):
print("push")

0
commands/util/git.py Normal file
View File