Pass -q to git-merge-cache
authorCatalin Marinas <catalin.marinas@gmail.com>
Wed, 14 Sep 2005 14:38:02 +0000 (15:38 +0100)
committerCatalin Marinas <catalin.marinas@gmail.com>
Wed, 14 Sep 2005 14:38:02 +0000 (15:38 +0100)
The error reporting is handled by gitmergeonefile.py

Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
stgit/git.py

index e4aacd5..bdc0e14 100644 (file)
@@ -346,7 +346,7 @@ def merge(base, head1, head2):
         raise GitException, 'git-read-tree failed (local changes maybe?)'
 
     # this can fail if there are conflicts
-    if os.system('git-merge-cache -o gitmergeonefile.py -a') != 0:
+    if os.system('git-merge-cache -o -q gitmergeonefile.py -a') != 0:
         raise GitException, 'git-merge-cache failed (possible conflicts)'
 
 def status(files = [], modified = False, new = False, deleted = False,