git-svn: get rid of additional fetch-arguments

It's not really useful anymore now that we have a better
--follow-parent for the valid cases.  Any other use
of it is not valid.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
diff --git a/git-svn.perl b/git-svn.perl
index 88c0227..2e3d355 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -277,8 +277,13 @@
 }
 
 sub cmd_fetch {
+	if (@_) {
+		die "Additional fetch arguments are no longer supported.\n",
+		    "Use --follow-parent if you have moved/copied directories
+		    instead.\n";
+	}
 	my $gs = Git::SVN->new;
-	$gs->fetch(@_);
+	$gs->fetch;
 	if ($gs->{last_commit} && !verify_ref('refs/heads/master^0')) {
 		command_noisy(qw(update-ref refs/heads/master),
 		              $gs->{last_commit});