From: W. Trevor King Date: Thu, 21 Oct 2010 11:57:43 +0000 (-0400) Subject: Add `-a` option to `git commit` call in release.py. X-Git-Tag: 1.0.0~4^2~4 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9ed51e5ce7223f51d432909ec3a3bbb536b6b128;p=be.git Add `-a` option to `git commit` call in release.py. --- diff --git a/release.py b/release.py index ae6a9f3..341019c 100755 --- a/release.py +++ b/release.py @@ -76,7 +76,7 @@ def remove_makefile_libbe_version_dependencies(): def commit(commit_message): print 'commit current status:', commit_message - invoke(['git', 'commit', '-m', commit_message]) + invoke(['git', 'commit', '-a', '-m', commit_message]) def tag(tag): print 'tag current revision', tag