From: Robert Lehmann Date: Sun, 21 Nov 2010 19:01:24 +0000 (+0100) Subject: Refrain from committing outstanding changes. X-Git-Tag: 1.1.0~245^2~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2b8718b5453ae8e4ed42687acbb377511c36669a;p=be.git Refrain from committing outstanding changes. This makes be-commit act more like git-commit. --- diff --git a/libbe/storage/vcs/git.py b/libbe/storage/vcs/git.py index a442c30..c9f10fe 100644 --- a/libbe/storage/vcs/git.py +++ b/libbe/storage/vcs/git.py @@ -143,7 +143,7 @@ class Git(base.VCS): return output.rstrip('\n').splitlines() def _vcs_commit(self, commitfile, allow_empty=False): - args = ['commit', '--all', '--file', commitfile] + args = ['commit', '--file', commitfile] if allow_empty == True: args.append('--allow-empty') status,output,error = self._u_invoke_client(*args)