X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-svn.perl;h=5702b100f17d32c4d370d2b29374390ad0f03520;hb=7b51b77dbc71e83789f59f0cd559489115478f27;hp=ef6d773df1143b32f0bc421b59421f7e0eab60bd;hpb=46dc1b0e332612aa32c139007fa33f4b429de9d1;p=git.git diff --git a/git-svn.perl b/git-svn.perl index ef6d773df..5702b100f 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -1191,7 +1191,7 @@ sub read_repo_config { my $v = $opts->{$o}; my ($key) = ($o =~ /^([a-zA-Z\-]+)/); $key =~ s/-//g; - my $arg = 'git-config'; + my $arg = 'git config'; $arg .= ' --int' if ($o =~ /[:=]i$/); $arg .= ' --bool' if ($o !~ /[:=][sfi]$/); if (ref $v eq 'ARRAY') { @@ -2267,7 +2267,7 @@ sub do_git_commit { } die "Tree is not a valid sha1: $tree\n" if $tree !~ /^$::sha1$/o; - my @exec = ('git-commit-tree', $tree); + my @exec = ('git', 'commit-tree', $tree); foreach ($self->get_commit_parents($log_entry)) { push @exec, '-p', $_; }