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