CLI mostly set up
This commit is contained in:
7
commands/commit.py
Normal file
7
commands/commit.py
Normal 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
6
commands/config.py
Normal file
@@ -0,0 +1,6 @@
|
||||
def config():
|
||||
print(
|
||||
"""
|
||||
Your config can be found at
|
||||
"""
|
||||
)
|
||||
2
commands/init.py
Normal file
2
commands/init.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def init(force: bool = False):
|
||||
print("Init")
|
||||
2
commands/pull.py
Normal file
2
commands/pull.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def pull(rebase: bool = False, apply: bool = False):
|
||||
print("pull")
|
||||
2
commands/push.py
Normal file
2
commands/push.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def push(force: bool = False):
|
||||
print("push")
|
||||
0
commands/util/git.py
Normal file
0
commands/util/git.py
Normal file
Reference in New Issue
Block a user