aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/vcs
diff options
context:
space:
mode:
authorRobert Lehmann <mail@robertlehmann.de>2010-11-21 20:01:24 +0100
committerRobert Lehmann <mail@robertlehmann.de>2010-11-21 20:01:24 +0100
commit2b8718b5453ae8e4ed42687acbb377511c36669a (patch)
tree0129d7cf1f293138d047792bd63591dbeb381325 /libbe/storage/vcs
parent6987178bcff46151f4eb827b8415b10c856b4b73 (diff)
downloadbugseverywhere-2b8718b5453ae8e4ed42687acbb377511c36669a.tar.gz
Refrain from committing outstanding changes.
This makes be-commit act more like git-commit.
Diffstat (limited to 'libbe/storage/vcs')
-rw-r--r--libbe/storage/vcs/git.py2
1 files changed, 1 insertions, 1 deletions
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)