aboutsummaryrefslogtreecommitdiff
path: root/delivery_merge/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'delivery_merge/git.py')
-rw-r--r--delivery_merge/git.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/delivery_merge/git.py b/delivery_merge/git.py
deleted file mode 100644
index 9e8aa6a..0000000
--- a/delivery_merge/git.py
+++ /dev/null
@@ -1,11 +0,0 @@
-from subprocess import run
-
-def git(*args):
- command = ['git']
- tmp = []
- for arg in args:
- tmp += arg.split()
-
- command += tmp
- print(f'Running: {" ".join(command)}')
- return run(command, capture_output=True)