svn-fe by default produces a progress line for each imported revision. For large repos it stresses the terminal and a user, possibly scrolls away error messages. Just disable progress lines for now. Signed-off-by: Dmitry Ivankov <divanorama@xxxxxxxxx> --- contrib/svn-fe/git-remote-svn-alpha | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/contrib/svn-fe/git-remote-svn-alpha b/contrib/svn-fe/git-remote-svn-alpha index 84d841e..d75bc2a 100755 --- a/contrib/svn-fe/git-remote-svn-alpha +++ b/contrib/svn-fe/git-remote-svn-alpha @@ -37,7 +37,7 @@ SVNDUMP=${SVNDUMP:-`try_svnadmin`} do_import () { revs=$1 url=$2 - (eval "$SVNDUMP \"$url\" -r\"$revs\"" | svn-fe) 3<&0 || die "FAILURE" + (eval "$SVNDUMP \"$url\" -r\"$revs\"" | svn-fe --no-progress) 3<&0 || die "FAILURE" exec 1>&- } -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html