On 10/27/2011 01:51 AM, edman747 wrote: > Hello, > Attempting to clone a remote svn repo where I don't know all the > previous SVN author names. > installed msysgit (vista) > gitbash, > $ mkdir test > $ cd test > > create authors file with a few known authors. > > $ git svn clone --authors-file=authors http://svn.repo/trunk > ... > runs fine until > Author: (no author) not defined in authors file > > edit authors file add line: (no author) = none <email> > > ------ > rerun previous git svn command > > $ git svn clone --authors-file=authors http://svn.repo/trunk > Using existing [svn-remote "svn"] > svn-remote.svn.fetch already set to track :refs/remotes/git-svn I'm not quite sure what your complaint is. "git svn clone" is equivalent to a "git svn init" followed by "git svn fetch". I would have thought that by the time "git svn clone" notices a problem with the authors file, it would already be in the "git svn fetch" phase. So it seems to me that after the first "clone" fails, one should probably run "git svn fetch" instead of "git svn clone" again. If this is the case (and the cause of your problem), then the documentation and error message should be made clearer. Michael -- Michael Haggerty mhagger@xxxxxxxxxxxx http://softwareswirl.blogspot.com/ -- 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