From 36740d90353c92e814917a0688764875fda49558 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 7 May 2019 00:22:20 -0400 Subject: Refactor: * Remove git.py * Replace duplicate code with simple wrapper * Add README.md * Add LICENSE.txt --- delivery_merge/git.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 delivery_merge/git.py (limited to 'delivery_merge/git.py') 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) -- cgit