diff options
| author | Eric Wong <normalperson@yhbt.net> | 2008-01-07 02:40:40 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2008-01-07 16:25:31 -0800 |
| commit | eee8a1742bf51df33f0f6004774035f57253f944 (patch) | |
| tree | 8e0fe761c15781d585cb01fe0bcf8eab61369b59 /git-svn.perl | |
| parent | git-svn: support for funky branch and project names over HTTP(S) (diff) | |
| download | git-eee8a1742bf51df33f0f6004774035f57253f944.tar.gz git-eee8a1742bf51df33f0f6004774035f57253f944.zip | |
git-svn: clarify the "Ignoring error from SVN" piece
I've heard of several users puzzled by this, and it sometimes it
appears as if git-svn is doing nothing on slower connections and
larger repositories.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-svn.perl')
| -rwxr-xr-x | git-svn.perl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-svn.perl b/git-svn.perl index 858c5be107..f5adbdaa41 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -3488,6 +3488,10 @@ sub skip_unknown_revs { warn "W: Ignoring error from SVN, path probably ", "does not exist: ($errno): ", $err->expanded_message,"\n"; + warn "W: Do not be alarmed at the above message ", + "git-svn is just searching aggressively for ", + "old history.\n", + "This may take a while on large repositories\n"; $ignored_err{$err_key} = 1; } return; |
