Package: git-bzr-ng Version: 0+git20120823-1 Severity: wishlist Tags: patch
Hi! Currently when doing «git bzr pull», «bzr fast-export» is invoked which produces some annoying output. Passing --quiet fixes that, in the same way other invocations are passing that as well. Attached a patch doing that. Thanks, Guillem
From 9b2b365fea5556a55608db2a71a6bdeba5ac8c97 Mon Sep 17 00:00:00 2001 From: Guillem Jover <[email protected]> Date: Sun, 3 Feb 2013 17:51:16 +0100 Subject: [PATCH] git-bzr: Pass --quiet on bzr-fast-export --- git-bzr | 1 + 1 file changed, 1 insertion(+) diff --git a/git-bzr b/git-bzr index bd881d1..a5a1a99 100755 --- a/git-bzr +++ b/git-bzr @@ -269,6 +269,7 @@ def export_bzr(bzr_ref, cl=None, overwrite=False): git_proc_in = LoggingPipe(git_proc.stdin, 'bzr fast-export') bzr_proc = bzr(['fast-export'] + bzr_import_arg + [ + '--quiet', '--plain', '--export-marks=%s' % bzr_marks, '--git-branch=%s' % bzr_ref, -- 1.8.1.3

