filter-repo: silence verbose fast-import output

Turn off fast-import stat output but do not squelch all error messages.

Signed-off-by: Elijah Newren <newren@gmail.com>
pull/13/head
Elijah Newren 16 years ago
parent 5faec262d3
commit 2581e7a0e6

@ -354,7 +354,7 @@ def FastImportInput(target_repo, extra_args = []):
os.makedirs(target_repo)
if call(["git", "init"], cwd = target_repo) != 0:
raise SystemExit("git init in %s failed!" % target_repo)
return Popen(["git", "fast-import"] + extra_args,
return Popen(["git", "fast-import", "--quiet"] + extra_args,
stdin = PIPE,
cwd = target_repo).stdin

Loading…
Cancel
Save