svnrdump by default shows "Dumped revision #n" lines on stderr.
svn-fe does it too on each imported revision, so pass --quiet to
svnrdump. Once process indication is really needed it will be
custom formatted in either svn-fe or remote-svn-alpha.
Signed-off-by: Dmitry Ivankov <redacted>
---
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 b2cca9f..61c9b07 100755
--- a/contrib/svn-fe/git-remote-svn-alpha
+++ b/contrib/svn-fe/git-remote-svn-alpha
@@ -15,7 +15,7 @@ usage () {
do_import () {
revs=$1 url=$2
(svnrdump dump --non-interactive --username=Guest --password= \
- -r"$revs" "$url" | svn-fe) 3<&0 || die "FAILURE"
+ -r"$revs" "$url" --quiet | svn-fe) 3<&0 || die "FAILURE"
exec 1>&-
}
--
1.7.3.4