summaryrefslogtreecommitdiff
path: root/git-svn.perl
diff options
context:
space:
mode:
authorMatthieu Moy <Matthieu.Moy@imag.fr>2008-04-24 18:06:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-04-30 06:11:57 (GMT)
commit59b0c24daaac3c2203dd8ac2de4dfcad909481a5 (patch)
tree47838d6ee4f48f263e5c02a9a410d101790989f2 /git-svn.perl
parentc8af1de9cfa0a5678ae766777e0f905e60b69fda (diff)
downloadgit-59b0c24daaac3c2203dd8ac2de4dfcad909481a5.zip
git-59b0c24daaac3c2203dd8ac2de4dfcad909481a5.tar.gz
git-59b0c24daaac3c2203dd8ac2de4dfcad909481a5.tar.bz2
git-svn: detect and fail gracefully when dcommitting to a void
The command git svn clone (URL of an empty SVN repo here) works, creates an empty git repository. I can perform the initial commit there, but then, "git svn dcommit" says : Use of uninitialized value in concatenation (.) or string at .../git-svn line 414. Committing to ... Unable to determine upstream SVN information from HEAD history I guess a correct management of the initial commit in git-svn would be hard to implement, but at least, the error message can be improved. First step is something like the patch below, and better would be for "git svn clone" to warn that it won't be able to do much with the cloned repo. Acked-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-xgit-svn.perl6
1 files changed, 4 insertions, 2 deletions
diff --git a/git-svn.perl b/git-svn.perl
index b151049..711e7b7 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -410,10 +410,12 @@ sub cmd_dcommit {
$head ||= 'HEAD';
my @refs;
my ($url, $rev, $uuid, $gs) = working_head_info($head, \@refs);
- print "Committing to $url ...\n";
+ if ($url) {
+ print "Committing to $url ...\n";
+ }
unless ($gs) {
die "Unable to determine upstream SVN information from ",
- "$head history\n";
+ "$head history.\nPerhaps the repository is empty.";
}
my $last_rev;
my ($linear_refs, $parents) = linearize_history($gs, \@refs);