From e97e787a3120a84d9d1ae52743a6fd41fea778ea Mon Sep 17 00:00:00 2001 From: Arjan van de Ven Date: Thu, 26 Nov 2015 14:09:14 -0500 Subject: [PATCH] delete commitmsg file after use --- git.py | 1 + 1 file changed, 1 insertion(+) diff --git a/git.py b/git.py index 211b032..1aeb187 100644 --- a/git.py +++ b/git.py @@ -68,3 +68,4 @@ def commit_to_git(path): return call("git commit -a -F commitmsg ", cwd=path) + call("rm commitmsg", cwd=path)