diff options
author | Deskin Miller <deskinm@umich.edu> | 2008-10-23 15:21:34 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-24 16:20:30 -0700 |
commit | 225f1d0c6af36722e6a52ab0563a19e86e51933d (patch) | |
tree | 3a04dd6f0e8bc7dbc0095ff099a920e2cfa87995 /git-svn.perl | |
parent | 031e6c898f61db1ae0c0be641eac6532c1000d56 (diff) | |
download | git-225f1d0c6af36722e6a52ab0563a19e86e51933d.tar.gz git-225f1d0c6af36722e6a52ab0563a19e86e51933d.tar.xz |
git-svn: change dashed git-config to git config
Signed-off-by: Deskin Miller <deskinm@umich.edu>
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 33e1b503c..2e68c68d4 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -1126,7 +1126,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') { |