From f7c1a0e219a4885c46bebc175683af55e9304d11 Mon Sep 17 00:00:00 2001 From: Garry Dolley Date: Thu, 6 Dec 2007 16:19:03 -0800 Subject: [PATCH] Added --quiet to git-init git-init will only print error and warning messages. Tests run a lot quieter now. --- gitosis/repository.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gitosis/repository.py b/gitosis/repository.py index 092e41d..9dd0291 100644 --- a/gitosis/repository.py +++ b/gitosis/repository.py @@ -41,6 +41,7 @@ def init( _git, '--git-dir=.', 'init', + '--quiet', ] if template is not None: args.append('--template=%s' % template)