mirror of
https://github.com/newren/git-filter-repo.git
synced 2024-11-17 03:26:08 +00:00
Turn off fast-import stat output without squelching all error messages
This commit is contained in:
parent
139387d1a4
commit
f856b2d84c
@ -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…
Reference in New Issue
Block a user