Hello, Eric! I'm trying to use git-svn, but the documentation seems to be quite unclear. I'm using current git-svn from the git repository. I'm running "git-svn init" in a Subversion working directory: $ git-svn init SVN repository location required at /home/proski/bin/git-svn line 223 main::init() called at /home/proski/bin/git-svn line 104 The help shown by git-svn without arguments doesn't say anything about arguments for "init", unlike other subcommands. I'm assuming that "git-svn init" is not taking any arguments. The manual page doesn't say anything about arguments, but it mentions that "the SVN_URL must be specified at this point". This statement is unclear to me. There are several references to SVN_URL in the manual, but there is no description what it is. Is it supposed to be an environment variable, or an undocumented argument, or is it taken from "svn info" output? The environment variable has no effect: $ SVN_URL=http://svn.madwifi.org/trunk git-svn init SVN repository location required at /home/proski/bin/git-svn line 223 main::init() called at /home/proski/bin/git-svn line 104 Looking at the sources, it looks like that SVN_URL is an undocumented argument for "git-cvs init". "git-svn fetch" appears to be taking that value from the git repository, but it also takes care to protect the original value (I have no idea where it can come from). One of the "basic examples" further in the manual confirms that SVN_URL is set on the command line: git-svn init http://svn.foo.org/project/trunk I believe that the documentation should be updated to describe where SVN_URL comes from, and what arguments are accepted by "git-svn init". Basic examples shouldn't recommend using undocumented arguments. It seems to me that the current documentation describes the internals of git-svn instead of its user interface. Rather than tell the user that "FOO must be specified at that point", the documentation should say what (an how) should (or can) be specified when the command is invoked on the command line. Also, it would be great to refer to the "additional fetch arguments" in the "fetch" description. That section is easy to miss by somebody who is specifically looking for "fetch arguments". -- Regards, Pavel Roskin - : 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