diff options
author | Alex Vandiver <alex@chmrr.net> | 2009-12-08 15:54:11 -0500 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2009-12-08 20:39:58 -0800 |
commit | f58415096632946b723fa73216ec1d49b4c6bb55 (patch) | |
tree | 20d6e9785e63a0299049e1584cc8519305efc70d /git-svn.perl | |
parent | 2bc35dcbf7ed702e92b925f8e50afe3632dd211b (diff) | |
download | git-f58415096632946b723fa73216ec1d49b4c6bb55.tar.gz |
git-svn: set svn.authorsfile earlier when cloning
If a clone errors out because of a missing author, or user interrupt,
this allows `git svn fetch` to resume seamlessly, rather than forcing
the user to re-provide the path to the authors file.
[ew: shortened subject]
Signed-off-by: Alex Vandiver <alex@chmrr.net>
Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index dc0e711593..a4b052c71e 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -394,9 +394,9 @@ sub cmd_clone { $path = basename($url) if !defined $path || !length $path; my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : ""; cmd_init($url, $path); - Git::SVN::fetch_all($Git::SVN::default_repo_id); command_oneline('config', 'svn.authorsfile', $authors_absolute) if $_authors; + Git::SVN::fetch_all($Git::SVN::default_repo_id); } sub cmd_init { |